Error: Command to change from KM or procedure steps

Hello

Recently, the it Department installed latest version of ODI 10.1.3.5.6

I noticed that when I want to change the order of steps in procedure (or crans KM), I can't save the changes.
The result is an error: ORA-00001: unique constraint (ODI_WORK. PK_LINE_TRT) violated

Does anyone else have this problem?

See you soon,.
Rudy

Hi Rudy,.

You meet BUG 9278199 - MOVING PROCEDURE STEPS from TOP TO DOWN no IS NOT POSSIBLE
It is introduced in 10.1.3.5.5 and not yet set at 10.1.3.5.6.

This Bug is fixed in ODI 11 g and there would soon be a single at the top of 10.1.3.5.6 patch

Thank you
Fati

Tags: Business Intelligence

Similar Questions

  • Getting error while inserting data from source to the target in the procedures?

    Hello

    I want to insert the data from the source to the target in the procedures, have the same schema.

    For this, I did as follows

    Command on the source:

    Technologies: oracle

    Schema: EDWHCMB

    Command:

    SELECT COMPANY_NAME, COMPANY_CODE OF

    EDWHCMB. DWT_COMAPNY

    Command on the target:

    Technologies: oracle

    Schema: EDWHCMB

    command:

    INSERT INTO EDWHCMB. TEMP

    VALUES)

    COMPANY_CODE,

    COMPANY_NAME)

    I have run the procudere then I got error as follows

    ODI-1228: SAMPLE1 (procedure) task fails on ORACLE EDWH connection target.

    Caused by: java.sql.BatchUpdateException: ORA-00984: column not allowed here.


    How to insert the data from the source to the target in the proceedings?

    Please send any document to this...

    Please help me.

    Thanks in advance,

    A.Kavya.

    Hi Bruno.

    If your tables are on the same schema then why do you use command on the source and the command on the target? You can simply do the following on the command on the target

    INSERT INTO EDWHCMB. TEMP

    SELECT COMPANY_NAME, COMPANY_CODE OF

    EDWHCMB. DWT_COMAPNY


    If you really want at all to use the command on the source and target both then I think you need to change the following code on your order on the target

    INSERT INTO EDWHCMB. TEMP

    VALUES)

    : COMPANY_CODE,.

    (: COMPANY_NAME)

    Hope your TEMP table has only these 2 columns.

    Thank you

    Ajay

  • printer is not running commands to print from gmail

    do not print when command to print from gmail

    Remember - this is a public forum so never post private information such as numbers of mail or telephone!

    Ideas:

    • You have problems with programs
    • Error messages
    • Recent changes to your computer
    • What you have already tried to solve the problem

    using the latest version, reinstall Chrome. You may have a corrupted in the update file.

  • I can't tp perform actions on email or some Web sites because the pointer does not change from a helping hand on all orders at the top of a page - any more down works fine

    In Hotmail, for example, I can open any message in the Inbox except the top one, but then I am unable to answer or to take further action because the symbol of the pointer does not change from a helping hand and clicking on has no effect.

    If I try to open the top message from the page by clicking on the command "Open" is gray.

    If I open the type of web page that has a number of menu items at the top of the page, I can't open anything either for the same reason - something more to the bottom of a page is fine. The type of Web site with menus on the sides can be used for all items except the top menu!

    Help!

    Concerning

    Brian

    The extension of the Yahoo! toolbar and the extension of Babylon have been reported because of this problem. Disable or uninstall the modules.

       * https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes
    
  • error C2440: '=': cannot convert from 'unsigned short [70]' to ' char *'__Code: UNICOD problem__ MapiMessage message; __message.lpszSubject = _T ("International Translation package Attached"); Error at this stage. ___

    Project is in UNICODE format in VC6.0 MFC on windows XP

    error C2440: '=': cannot convert from 'unsigned short [70]' to ' char *'
    Code:

    MapiMessage message;
    message.lpszSubject = _T ("International Translation package Attached"); Error at this stage.

    I would know how can I use MapiMessgae in my program using Unicode.

    Suggest me any change in

    Thank you and best regards,

    Sanjay.

    Hello Sanjay

    The question you have posted is better suited to the MSDN forums. You can ask your question in the help link.

    http://social.msdn.Microsoft.com/forums/en/category/vsexpress

    Hope the helps of information.

    Concerning
    Joel S
    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • ORA-12012: error on auto work 754461 ORA-29279: SMTP permanent error: ORA-29279: SMTP permanent error: 501 Syntax error, command parameters "RCPT TO:" ORA-06512 unrecognized or missing: at "SYS." UTL_SMTP", line 20 ORA-06512: at"SYS." UTL_SMTP.

    Hello


    I get below error frequently in the log database alerts.


    ORA-12012: error on auto work 754461

    ORA-29279: SMTP permanent error: ORA-29279: SMTP permanent error: 501 Syntax error, command parameters ' RCPT TO: ' unrecognized or missing

    ORA-06512: at "SYS." UTL_SMTP", line 20

    ORA-06512: at "SYS." UTL_SMTP", line 98

    ORA-06512: at "SYS." UTL_SMTP", line 240

    ORA-06512: at the 'APPS '. EIS_UTIL_PKG', line 94

    ORA-06512: at the 'APPS '. HKD_PO_ADDON_PKG', line 110

    ORA-06512: at line 1

    The syntax error comes from the SMTP server, not to the job itself, so I disagree with your solution.

  • Re: "insufficient privileges" error when you run the Java stored procedure in another schema

    I get an "insufficient privileges" error when you run the Java stored procedure in another schema, see details below.  I don't know what are missing privileges (I already granted the EXECUTE privilege), suggestions?  -Thank you.

    Define a simple java class and deploy it as a Java stored procedure to test:


    Schema: User1

    test of the package;

    public class HelloWorld {}

    public HelloWorld() {

    Super();

    }

    public static String Hello () {}

    Return "HELLO";

    }

    }

    CREATE or REPLACE FUNCTION HELLO RETURN VARCHAR2 AUTHID CURRENT_USER AS LANGUAGE JAVA NAME ' test. HelloWorld.hello () return java.lang.String';

    Grant execute on USER2 HELLO

    Test the Java stored procedure through the PL/SQL function call (in the same schema):


    Schema: User1

    SET SERVEROUTPUT ON

    DECLARE

    v_Return VARCHAR2 (200);

    BEGIN

    v_Return: = User1. HELLO;

    DBMS_OUTPUT. Put_line ('v_Return =' | v_Return);

    END;

    anonymous block filled

    v_Return = HELLO

    Test the Java stored procedure through the PL/SQL function call in a different pattern:


    Schema: USER2

    SET SERVEROUTPUT ON

    DECLARE

    v_Return VARCHAR2 (200);

    BEGIN

    v_Return: = User1. HELLO;

    DBMS_OUTPUT. Put_line ('v_Return =' | v_Return);

    END;

    Error report-

    ORA-01031: insufficient privileges

    ORA-06512: at "User1." HELLO', line 1

    ORA-06512: at line 4 level

    01031 00000 - "insufficient privileges".

    * Cause: An attempt was made to change the user name or password

    without the privilege appropriate. This error also occurs if

    trying to install a database without the need for employment

    access privileges.

    When Trusted Oracle is configure in DBMS MAC, this error may occur

    If the user has been granted the privilege necessary for a higher label

    that the connection is active.

    * Action: Ask the database to perform the operation or grant administrator

    the required privileges.

    For users Trusted Oracle get this error, well that granted the

    the privilege that is suitable for the top label, ask the database

    administrator to grant the privilege to the appropriate label.

    You have created the function with AUTHID CURRENT_USER, which means that the function is executed with the rights of the applicant (but not with the rights of the author). This means that the applicant must have grants (directly or through roles) on all used/accessible objects in the service. In your case the user USER2 has not granted with EXECUTE on the class/source Java test. Class HelloWorld, causing the ORA-01031 exception. You create service without AUTHID CURRENT_USER (i.e. with AUTHID DEFINE, which is by default, if you do not have a specific reason to use AUTHID CURRENT_USER) or grant EXECUTE on JAVA test SOURCE. Class HelloWorld to User2.

    Dimitar

  • Error: General error in method, change of status

    Hi, I want to change in the Omw my draft of the statute from 28 to 38 in JDE E1 9.1, but it show me this error: "error: General error in method, change of status. What can I do? Thank you.

    In this case, the problem was a bad UDC object within the project. We set the UDC and ready.

  • "Home CPU/memory/connection" (host) changes from green to gray, then gray to green?

    Hey everybody,

    I'm trying to track down a problem with one of my two hosts. My Cluster (2 guests in HA/vMotion) is pretty basic, but runs a lot of VM that requires an availability of 100% (as if we want to accept less ). This is the result I get every two weeks. It's a bit concerning to know that for some reason a node is abandoned, or is it same stall? I see no vMotion alerts or the tasks in that time. Nothing seems to break. Uptime on each virtual computer and the node in question leads me to believe that nothing is really wrong, but it can be worse than what I think. I mean he's only 17 seconds... how bad could it be, right?

    I'm assuming "Host memory usage", "host CPU usage", 'Swap host service rate console', etc. go from green to gray, then gray green means that it is not a resource problem, just an indicator that it is "grayed out" because there no report or an interruption of the connection.

    I guess I am wondering if it is network related, associated hardware partner, vsphere host or something I can't even think. The host disconnects for 7 seconds and no quick vMotioning can't. I think 30 seconds is the rule in front of him vMotions? I mean, I had rather not vMotion, if I can avoid it.

    Whatever it is, what do you think?

    Alarm 'Hosting service console swap rate' on (HOSTNAME) changed from grey to green
    Info
    06/07/2011 19:53:35
    (HOSTNAME)

    Alarm "Host memory using" on (HOSTNAME) changed from grey to green
    Info
    06/07/2011 19:53:35
    (HOSTNAME)

    'Use of the UC to host' alarm on (HOSTNAME) changed from grey to green
    Info
    06/07/2011 19:53:35
    (HOSTNAME)

    Alarm 'Host fell' on (HOSTNAME) sent by e-mail to (ADDRESS);
    Info
    06/07/2011 19:53:26
    (HOSTNAME)

    Alarm 'Host fell' on (HOSTNAME) triggered an action
    Info
    06/07/2011 19:53:26
    (HOSTNAME)

    'Host fell' alarm on (HOSTNAME) has changed from yellow to green
    Info
    06/07/2011 19:53:26
    (HOSTNAME)

    Alarm 'Connection and power supply home State' on (HOSTNAME) changed from red to green
    Info
    06/07/2011 19:53:26
    (HOSTNAME)

    A connection established
    Info
    06/07/2011 19:53:25
    (HOSTNAME)

    A connection established
    Info
    06/07/2011 19:53:25
    (HOSTNAME)

    Alarm 'Connection and power host State' on (HOSTNAME) sent by e-mail to (ADDRESS);
    Info
    06/07/2011 19:53:20
    (HOSTNAME)

    "Failed to connect to host" alarm: sent an SNMP trap for the entity (HOSTNAME)
    Info
    06/07/2011 19:53:20
    (HOSTNAME)

    'The host connection failure' on (HOSTNAME) alarm action
    Info
    06/07/2011 19:53:20
    (HOSTNAME)

    "The host connection failure" alarm on (HOSTNAME) changed from gray to gray
    Info
    06/07/2011 19:53:20
    (HOSTNAME)

    'Hosting service console swap rate' alarm on (HOSTNAME) changes from green to grey
    Info
    06/07/2011 19:53:19
    (HOSTNAME)

    Alarm "Host memory using" on (HOSTNAME) changes from green to grey
    Info
    06/07/2011 19:53:19
    (HOSTNAME)

    'Use of the UC to host' alarm on (HOSTNAME) changes from green to grey
    Info
    06/07/2011 19:53:19
    (HOSTNAME)

    Alarm 'Host fell' on (HOSTNAME) changes from green to yellow
    Info
    06/07/2011 19:53:19


    (HOSTNAME)

    'Connection and power host State' on (HOSTNAME) alarm action
    Info
    06/07/2011 19:53:19
    (HOSTNAME)

    Alarm 'Connection and power supply home State' on (HOSTNAME) goes from green to red
    Info
    06/07/2011 19:53:19
    (HOSTNAME)

    Host is not responding
    error
    06/07/2011 19:53:18
    (HOSTNAME)

    My memory, I cannot keep records for a long time. Last year, I think that I have seen this problem and it was a bug. There is also a patch for it. It was a BUG where the way every now and then, the confidence in me it was no problem at all in the perspective of the environment.

    I don't remember the article or the revision of patch has this connection, but you may need to check the kb.vmware.com to see if you can find.

  • What command to change the number of ports for vSwitch0?

    I develop kickstart to deploy ESX4 U1 to upgrade our 100 ESX 3.5 servers. After trying for a day, I had almost all of this work. The problem is vSwitch0 is created with only 32 ports. Can I use vi client to change the port number after, but it is nice to have everything using kickstart.

    Y at - it a command to change the number of ports for vSwitch0? I know that you can create a new vswitch port num vSwitch, but not for vSwitch0 created during installation.

    For those using pxe and start problem with no. cos NIC added by the user, it is not a real error message, press Alt + F1 to display the actual error message, it should tell you what the problem is.

    Thank you

    I have it in my postconfig:

    Perl-pi-e w /------/ NET/vswitch\/child\ [0000\] \/numPorts = \"\d+\"/\/net\/vswitch\/child\[0000\]\/numPorts = \"256\"/g;' /etc/vmware/esx.conf

    Ben

  • Converter error when you change the virtual hardware...

    Convert the task runs at 97% then fails with the following text in the log:

    Val = {(converter.task.TaskInfo)

    dynamicType = & lt; unset & gt;

    key = "task-4."

    task = ' converter.task.Task:task - 4',.

    name = "convert."

    descriptionId = "Convert.P2V."

    userName = "xxxxxx.xxxxx"

    source = "xxxxxxxxxxxxxxx";

    target = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx."

    State = "error"

    canceled = false,

    cancelable = true,

    data = & lt; unset & gt;

    error = {(vmodl.fault.SystemError)

    dynamicType = & lt; unset & gt;

    reason = "SSL Exception: BIO Error."

    MSG = "a general error has occurred: SSL Exception: error BIO.

    We do a test P2V on some Cisco Unified Messaging servers - hardware is HP/Compaq server with a Windows 2000 Server operating system.  The server operating system is changed from Cisco by what I said.

    Kind regards...

    Jamie

    If you found this information useful, please consider awarding points to 'Correct' or 'useful '.

    Remember, if it isn't one thing, it's your mother...

    jamieorth,

    Can you provide the logs as an attachment to this topic?

    Windows 2000 generally fails to 97% for a variety of reasons and next to these fall into being a "reconfiguration" of the fault.  If the virtual machine is the surplus on the destination, we are able to complete this last 3%.

    Here's a few kbs for breaches of 97% example:

    http://KB.VMware.com/kb/1006295/

    http://KB.VMware.com/kb/1001620/

    http://KB.VMware.com/kb/1006858/

    Kind regards

    EvilOne

    VMware vExpert 2009

    NOTE: If your question or problem has been resolved, please mark this thread as answered and awarded points accordingly.

  • Try to understand the error of the changing table

    Hi all
    The error I get triggered only when only the table in question is updated? How bout when he got inserted or deleted?
    Assume that the following code creates TRGGER and runs the UPDATE and INSERT statements:
    CREATE OR REPLACE TRIGGER section_biu
    BEFORE INSERT OR UPDATE ON section
    FOR EACH ROW
    DECLARE
    v_total NUMBER;
    v_name VARCHAR2(30);
    
    BEGIN
      SELECT COUNT(*) INTO v_total FROM section WHERE instructor_id = :NEW.instructor_id;
    
      IF v_total >= 10 THEN
        SELECT first_name||' '||last_name INTO v_name FROM instructor WHERE instructor_id = :NEW.instructor_id;
        RAISE_APPLICATION_ERROR(-20000, 'Instructor, '||v_name||', is overbooked');
      END IF;
    
    EXCEPTION
      WHEN NO_DATA_FOUND THEN
        RAISE_APPLICATION_ERROR(-20001, 'This is not a valid instructor');
    END;
    
    Trigger created.
    
    SQL> update section set instructor_id=101 where section_id=80;
    update section set instructor_id=101 where section_id=80
           *
    ERROR at line 1:
    ORA-04091: table STUDENT.SECTION is mutating, trigger/function may not see it
    ORA-06512: at "STUDENT.SECTION_BIU", line 6
    ORA-04088: error during execution of trigger 'STUDENT.SECTION_BIU'
    
    SQL> insert into section (section_id,course_no,section_no,instructor_id,created_by,created_date,modified_by,modified_date) values (200,10,1,108,user,sysdate,user,sysdate); 
    
    1 row created.
    The mutation of error raised when I tried to update the table but does not when a row is inserted.

    Is it possible to trigger the transfer error in running the INSERT statement without changing the trigger? Are there any other conditions that may trigger the error even without changing the trigger?

    Best regards
    TA.

    Published by: debonair Valerie on May 5, 2011 02:17

    The insert is a single row insert, and the database knows - it wiill do not suffer from any problem of changing table.
    However, update may or may not be dealing with many lines, so could have the question.
    If you did a multi line insertion, or even one that could potentially be multi line, then you get the same error.

    Carl

  • Command to change the semantics BYTE char to a table column

    DB version: 10 gr 2

    I know that he is an ALTER TABLE TableName CHANGE command to change the NLS_LENGTH_SEMANTICS for a table column.

    I need to change column of the table EMP of Ename and TANK job. How can I do this with an ALTER command?
    SQL>col data_Type format a12
    SQL>col column_name format a10
    SQL>
    SQL>select COLUMN_NAME, DATA_TYPE,DATA_LENGTH, CHAR_LENGTH,CHAR_USED
      2  from dba_tab_columns
      3  where table_name='EMP' and owner = 'SCOTT';
    
    COLUMN_NAM DATA_TYPE    DATA_LENGTH CHAR_LENGTH C
    ---------- ------------ ----------- ----------- -
    EMPNO      NUMBER                22           0
    ENAME      VARCHAR2              10          10 B
    JOB        VARCHAR2               9           9 B
    MGR        NUMBER                22           0
    HIREDATE   DATE                   7           0
    SAL        NUMBER                22           0
    COMM       NUMBER                22           0
    DEPTNO     NUMBER                22           0
    
    8 rows selected.

    Try

    alter table emp modify (ename varchar2(10 char), job varchar2(9 char));
    
  • Why do you have my emoticons change from one day to the next and how can I get the 'old'?

    The choice of emoticons changed from one day to the next. I would like to have the 'old'. Why Gmail does not send a msg Heads Up? Thank you.

    Hello

    This does not sound like a Firefox problem, but a change that was made to Google for their e-mail service. I recommend that get you in touch with them through the channels of Gmail support and they may be able to help.

  • I changed from an iphone 5 S 6 s without disconnecting from my watch, 5s has been cleared and my watch can not be unlocked so that I can't erase it to pair with the 6s. What can I do?

    I changed from an iphone 5 S 6 s without disconnecting from my watch, 5s has been cleared and my watch can not be unlocked so that I can't erase it to pair with the 6s. What can I do?

    This is what Apple said in their Article of support:

    Disable the match without your iPhone

    If you do not have your iPhone, you can always erase content and settings on your Apple Watch. On your Apple Watch, tap Settings > general > reset > erase content and settings. This will reset your Apple Watch to the factory settings.

    See you soon,.

    GB

Maybe you are looking for