Parameter Missing IN error or OUT to index: 1

Hello
I created a procedure with
SOURCE:
Select distinct a.bseg_id, b.pricecomp_id, c.svc_qty, a.seqno
ci_bseg_cl_char has,
(select BSEG_CL_CHAR. BSEG_ID, BSEG_CL_CHAR. SEQNO,
case
When BSEG_CL_CHAR. CHAR_TYPE_CD = "PAPCPICH" then
BSEG_CL_CHAR. ADHOC_CHAR_VAL
end PRICECOMP_ID
of CI_BSEG_CL_CHAR BSEG_CL_CHAR) b.
(select CL_CHAR. BSEG_ID, CL_CHAR. SEQNO,
-case when CL_CHAR. CHAR_TYPE_CD = "AGGSVQTY" then
CL_CHAR. ADHOC_CHAR_VAL
end SVC_QTY
of CI_BSEG_CL_CHAR CL_CHAR) c
where a.bseg_id = b.bseg_id
and a.bseg_id = c.bseg_id
and a.seqno = b.seqno
and a.seqno = c.seqno
and b.pricecomp_id is not null
and c.svc_qty is not null
order of pricecomp_id, seqno

TARGET:
insert into FACT_ODI_INTERMEDIATE1
(
bseg_id,
pricecomp_id,
svc_qty,
Seqno
)
values
(
: bseg_id,.
: pricecomp_id,.
: svc_qty,.
: seqno
)

but its me gives error as:

ODI-1228: task load Intermediate1 (process) fails on ORACLE VISA connection target.
Caused by: java.sql.SQLException: parameter IN or OUT to missing index: 1


If anyone can help? /

Try changing the column names to upper case and check it once... .quelquechose like this...

insert into FACT_ODI_INTERMEDIATE1
(
BSEG_ID,
PRICECOMP_ID,
SVC_QTY,
SEQNO
)
values
(
: BSEG_ID,.
: PRICECOMP_ID,.
: SVC_QTY,.
: SEQNO
)

Tags: Business Intelligence

Similar Questions

  • So I reworked my code and it seems more clear but who always get "RangeError: Error #2006: the supplied index is out of bounds"nonsense. " (CODE + ERROR ATTACHED)

    I reworked the code to make it without error. now, all we are dealing with is the problem of ERROR REANGE. I'm very new to Flash and read responses from people on sites where they solved this problem, but do not understand what people at all. any help would be greatly appreciated.

    Let me explain a little better my problem: I am creating a menu drop-down. everything goes fine UNTIL I'll scroll above the button and get the error. I added an inner glow, etc and it all works very well. I'm only stuck to where the menu is supposed to go down.

    CODE 1:

    var navBtnGlow:GlowFilter = new GlowFilter (0 x 000000, 0.5, 0, 15, 1, 2, true, false);

    navBar_mc.addEventListener (MouseEvent.MOUSE_OVER, navOverF);

    navBar_mc.addEventListener (MouseEvent.MOUSE_OUT, navOutF);

    function navOverF(event:MouseEvent):void {}

    event.target.filters = [navBtnGlow];

    navBar_mc.setChildIndex (event.target as MovieClip, 1);

    dropMenus_mc.gotoAndStop (navBar_mc.getChildAt (1) .name);

    trace ("we rolled on..." + navBar_mc.getChildAt (1) .name)

    }

    function navOutF(event:MouseEvent):void {}

    event.target.filters = [];

    }

    ERROR:

    RangeError: Error #2006: the supplied index is out of range.

    at flash.display::DisplayObjectContainer/setChildIndex()

    to NEWprim_fla::MainTimeline/navOverF()

    Thank you for your help in advance.

    not sure about this, but what happens if you change your setchildindex to 0? in the navOverF function

  • Using bulk collect into with assistance from the limit to avoid the TEMP tablespace error run out?

    Hi all

    I want to know if using bulk collect into limit will help to avoid the TEMP tablespace error run out.

    We use Oracle 11 g R1.

    I am assigned to a task of creating journal facilitated for all tables in a query of the APEX.

    I create procedures to execute some sql statements to create a DEC (Create table select), and then fires on these tables.

    We have about three tables with more than 26 million records.

    It seems very well running until we reached a table with more than 15 million record, we got an error says that Miss tablespace TEMP.

    I googled on this topic and retrieve the tips:

    Use NO LOG

    Parallel use

    BULK COLLECT INTO limited

    However, the questions for those above usually short-term memory rather than running out of TEMPORARY tablespace.

    I'm just a junior developer and does not have dealed with table more than 10 million documents at a time like this before.

    The database support is outsourced. If we try to keep it as minimal contact with the DBA as possible. My Manager asked me to find a solution without asking the administrator to extend the TEMP tablespace.

    I wrote a few BULK COLLECT INTO to insert about 300,000 like once on the development environment. It seems.

    But the code works only against a 000 4000 table of records. I am trying to add more data into the Test table, but yet again, we lack the tablespace on DEV (this time, it's a step a TEMP data)

    I'll give it a go against the table of 26 million records on the Production of this weekend. I just want to know if it is worth trying.

    Thanks for reading this.

    Ann

    I really need check that you did not have the sizes of huge line (like several K by rank), they are not too bad at all, which is good!

    A good rule of thumb to maximize the amount of limit clause, is to see how much memory you can afford to consume in the PGA (to avoid the number of calls to the extraction and forall section and therefore the context switches) and adjust the limit to be as close to that amount as possible.

    Use the routines below to check at what threshold value would be better suited for your system because it depends on your memory allocation and CPU consumption.  Flexibility, based on your limits of PGA, as lines of length vary, but this method will get a good order of magnitude.

    CREATE OR REPLACE PROCEDURE show_pga_memory (context_in IN VARCHAR2 DEFAULT NULL)

    IS

    l_memory NUMBER;

    BEGIN

    SELECT st. VALUE

    IN l_memory

    SYS.v_$ session se, SYS.v_$ sesstat st, SYS.v_$ statname nm

    WHERE se.audsid = USERENV ('SESSIONID')

    AND st.statistic # nm.statistic = #.

    AND themselves. SID = st. SID

    AND nm.NAME = 'pga session in memory. "

    Dbms_output.put_line (CASE

    WHEN context_in IS NULL

    THEN NULL

    ELSE context_in | ' - '

    END

    || 'Used in the session PGA memory ='

    || To_char (l_memory)

    );

    END show_pga_memory;

    DECLARE

    PROCEDURE fetch_all_rows (limit_in IN PLS_INTEGER)

    IS

    CURSOR source_cur

    IS

    SELECT *.

    FROM YOUR_TABLE;

    TYPE source_aat IS TABLE OF source_cur % ROWTYPE

    INDEX BY PLS_INTEGER;

    l_source source_aat;

    l_start PLS_INTEGER;

    l_end PLS_INTEGER;

    BEGIN

    DBMS_SESSION.free_unused_user_memory;

    show_pga_memory (limit_in |) "- BEFORE"); "."

    l_start: = DBMS_UTILITY.get_cpu_time;

    OPEN source_cur.

    LOOP

    EXTRACTION source_cur

    LOOSE COLLECTION l_source LIMITED limit_in;

    WHEN l_source EXIT. COUNT = 0;

    END LOOP;

    CLOSE Source_cur;

    l_end: = DBMS_UTILITY.get_cpu_time;

    Dbms_output.put_line (' elapsed time CPU for limit of ')

    || limit_in

    || ' = '

    || To_char (l_end - l_start)

    );

    show_pga_memory (limit_in |) "- AFTER");

    END fetch_all_rows;

    BEGIN

    fetch_all_rows (20000);

    fetch_all_rows (40000);

    fetch_all_rows (60000);

    fetch_all_rows (80000);

    fetch_all_rows (100000);

    fetch_all_rows (150000);

    fetch_all_rows (250000);

    -etc.

    END;

  • 404.2 error trying to use index.cfm as default page in the directory

    Hello

    Here's my server

    -Windows 2008 Server R2 Ent

    -IIS 7.5

    -10 ColdFusion

    CF10 installation ran smoothly, that the wsconfig seems to have created all the necessary stuffs:

    ISAPI filter: tomcat C:\ColdFusion10\config\wsconfig\1\isapi_redirect.dll

    Authorized ISAPI restriction: tomcat_all C:\ColdFusion10\config\wsconfig\1\isapi_redirect.dll

    index.cfm added in the Document by default, placed first in the upwards in the list

    CFIDE, virtual directories jakarta created, etc...

    Everything works ok EXCEPT that IIS is unable to Server index.cfm as default directory page:

    -This results in an error: http://www.example.com/ (to simplify, index.cfm is the only page in the root directory)

    -an error and serve the index.cfm page correctly: http://www.example.com/index.cfm

    Error 404.2 spoke (in french)

    'The page you requested is not found because of the list of ISAPI and CGI Web Server restrictions settings."'

    I don't see anything special in the settings of the ISAPI/CGI restrictions, they are still the same as on the dev server, that is not the problem...

    I tried to delete the connectors using wsconfig and then re-launch to reinstall connectors, without success.

    Any help is appreciated as I am out of ideas...

    Thank you.

    Yes, no surprise.  Well, all I found for this error discussed the option of ISAPI and CGI restrictions in IIS.  The error itself indicates the same - "HTTP error 404.2 - not found the page you request cannot be served because of the settings of the ISAPI and CGI restrictions list on the Web server.

    Are you sure that the settings that are the same on both servers AND that they are the same on both servers activated?

    I realize that it works when you specify index.cfm but that error tells you that the ISAPI and CGI parameters are not correct.  Otherwise, it would be just a normal 404.  Right?

  • Bootmgr missing of error for windows 7 Home Basic

    Salvation;

    I want to restore my laptop to factory setting, because all network drivers are currupted and couldn't fix the laoptop. but I tried to restore to factory setting I'm missing bootmgr error fascing... .i have no any CD bootable...

    Here are the details of my laptop:

    Operating system: Windows 7 Home Basic

    Model laptop: HP pavilion dv6 notebook PC

    The system board ID: 1658

    Processor type: Intel Core i5 - 2430M CPU @2. 40 GHZ

    any help will be appreciated

    concerning

    khalid Khan

    When you request support, please provide the number full name or product model of the HP computer in question. HP/Compaq made thousands of computer models. Without this information, it can be difficult, even impossible to help you solve your problem.

    The information requested above are at the bottom of your computer or inside the battery compartment. , Please do not include your serial number. Please enter the product/model information in the HP Online Support page for consumers , and/or post it here for our review.

    Please indicate if the system recovery ran and finished or you were unable still to start the recovery. Depending on the exact cause, you may be able to fix the "bootmgr missing" error using a Windows 7 installation DVD. If you need a disc to Windows SP1, see 'How to install Windows 7 without the disc' to download and create your own. If you created this disk, you can boot from it and select 'Repair' to try to solve the current problem.

    Select repair your computer. After several screens, you will come to choice. Select command prompt. Type bootrec /RebuildBcd.  Then type Exit

     

    Select "Startup Repair" and let it run. Reboot the laptop.

     

    If you have any other questions, feel free to ask.

    Please click the White Star of KUDOS to show your appreciation

  • Windows cannot copy files required for installation. The files may be damaged or missing. Error code: 0 x 80070241.

    I had a lot of trouble trying to install the 64-bit version of windows 7 Home Premium on my 64-bit vista, and my question is multi-part. If it is relevant, it's my 2nd copy of windows 7 I have tried. Initially, I had the problem of not being able to run the installation on two copies with the error "'autorun.dll' could not be found or is damaged. Error code is [0x7E]. "However, I managed to get into with my 2nd copy installation after restarting my computer. Once in Setup, I got another error that stopped the installation that says "windows not could create an installation folder. Error code is 0 x 80070017. "Again, I rebooted my computer and started the installation again, this time following installation was decently through but stopped when I got the error"Windows cannot copy files required for installation. The files may be damaged or missing. Error code is 0 x 80070241. "I then backed up and restarted my computer and then tried to use the option to install custom but then got the error"E:\sources\autorun.dll is not designed to run on windows or it contains an error. Try to install the program using the original media, or contact your system administrator. "coupled with the error"the file 'autorun.dll' could not be loaded or is corrupt. Error code is 0xC1"again once I restarted and tried the custom option but got the error" Windows has no load the required file WinSetup.dll.» The file is possibly corrupted. To install windows, restart the installation. Error code is 0x3E6. "I restarted my computer and tried the custom triple option more and still have the error"Windows cannot copy files required for installation. The files may be damaged or missing. Error code is 0 x 80070241. »

    I understand that my problem is very complex, but it seems to be built around a missing or damaged file. Thanks if you can tell what's wrong or what to do.

    Tips for solving common problems when Windows 7 won't install troubleshooting

    1. start Windows Upgrade Advisor to see if there are known issues that might affect the installation and correct them.
    http://Windows.Microsoft.com/en-us/Windows/downloads/Upgrade-Advisor

    2 disable any security software, including anti-virus programs and firewalls.
    3 make sure that your computer has the BIOS and latest drivers.
    4. disconnect all external devices except the keyboard and mouse before installing.
    5. If your computer/motherboard integrated video use and remove the dedicated video card.
    6. If you have a large amount of RAM (memory), try to reduce the amount of RAM installed. 1 GB if 32-bit installation, 2 GB for 64-bit, then replace RAM if the upgrade was successful.
    7. If you have downloaded Windows 7 and it burned a DVD test burn again at the slowest speed possible. It is also possible the download may have errors, you can try to download it again.

    8. check your RAM (memory) to find errors. This can take some time.
    (A) Insert the Windows 7 DVD and restart the computer.
    (B) start from the Windows 7 DVD.
    (C) select your language, and then click Next.
    (D) click on "repair your computer" then select the operating system to fix it.
    (E) click on the link of the Memory Diagnostics in the system recovery menu.
    (F) the computer will restart and your memory is checked for errors.

    9 turn off startup programs:
    (A). Click Start, type MSCONFIG in the search box and press ENTER.
    OK the authorization of user account control and password if necessary
    If you are using XP: click Start, run, and type: MSCONFIG and click OK.
    (B) on the general tab, click Selective startup.
    (C) just below the selective startup, clear the checkbox "Load Startup items".
    (D) click the Services tab, check "Hide all Microsoft Services", and then click Disable all.
    (E) click OK, and then restart the computer.
    (F) try the upgrade again.

    (NOTE: If the upgrade fails and you continue to use your rear security software, then also go back into MSCONFIG and under the general Tower XP/Vista tab, click "Normal startup", and then click OK to exit.)

    Questions about installing Windows 7?
    FAQ - Frequently Asked Questions from Installation Windows 7 & responses

  • Error "check out the printed put, put printed on may be printed incorrectly.

    When I printed this time I got error "check out the printed put, put printed on can be printed incorrectly" when I test print this time only paper to jump, no printing ink on paper & I mentioned error came also. I have reinstalleddriver & printer spooler is restarted, cable also only checked no problems found but repeat same mistake. PSL help me more early like! possible, can you help me to find what parts of the printer is damage or nuisance os?... Please help me

    Hello Vishnu,

    You can try to follow the below link to check if the common issues with printer are the reason for the error message.

    Solve printer problems

    http://Windows.Microsoft.com/en-us/Windows/printer-problems-in-Windows-help#fix-printer-problems=Windows-7&V1H=win8tab4&V2H=win7tab1&V3H=winvistatab1&v4h=winxptab1

    I hope this helps. Otherwise, feel free to brief us back for assistance.

    Thank you

  • "The parameter is incorrect" Error Message is displayed on the computer

    I'm running Windows 7 Home Pro on an Asus laptop and recently decided to add my old printer USB, HP Oficejet v40, to our network via a print server, LPR Networking USB wireless home. The Installer seems to fill correctly, and my printer appears in the list of available network printers (I alone). However, when I try to print wireless, I get one or more error messages. The first and the most persistent are: a StartDocPrinter call was not issued. Sometimes (not always) this is accompanied by another popup error: the parameter is incorrect. In each case, the document I am trying to print is no longer in effect. My USB utility Server network sometimes prints, and sometimes it is available. Running the printer troubleshooter cannot correct the problem (s) and always results in the following error: printer HP Officejet V40-P05d0443eb can be contacted via the network. If I connect the printer directly to my laptop, USB port, it prints as expected.

    The print driver is up-to-date. I tried to uninstall and reinstall the printer and print server and have also tried to reset the print server and the router, to anything will do. Any help to fix these problems is greatly appreciated!

    Original title: error: A StartDocPrinter call was not issued.

    Hello

    Thanks for posting your query in Microsoft Community.

     

    You can consult the following articles and check if they help:

    Wireless printing Center Resolution of problems
     
    "The parameter is incorrect" Error Message is displayed on the computer
    http://h10025.www1.HP.com/ewfrf/wc/document?cc=us&LC=en&docName=c03283238

    For the error: "the printer cannot be contacted over the network",
    refer to suggestions provided by Meghmala responded on May 28, 2010.

     
    Hope this solves the problem. If the problem persists, you can write back to us and we will be happy to help you further.
  • How to solve ' execution runtime error 7: out of memory "for the 64-bit os (windows 7)

    I have windows 7 64 bit OS on my computer hp laptop

    now when I want to open our software to companies named bomdels show the message ' execution runtime error 7: out of memory.
    I really need this application runs
    now please help me to solve this problem as soon as possible.

    Correct errors in Internet Explorer,

    http://support.Microsoft.com/kb/822521

    http://support.Microsoft.com/kb/308260

  • Windows cannot install required files. File is possibly corrupted or missing. Error code 0 x 80070570

    I have Windows 7 Professional upgrade disk. I select custom installation. the trial ends approximately 54% then displays this message: Windows cannot install required files. File is possibly corrupted or missing. Error code 0 x 80070570 do - what I do?

    try to install by removing a strip of memory (RAM) If you have 2 stick of ram installed.

  • msdvcp110.dll missing file error

    msdvcp110.dll missing file error

    I'm done with the installation of c ++ redistribution and everything but does not work for ultimate express

    Original title: installation of visual studio 2012 on windows 8

    Hi Mike,.

    Thanks for posting your query in Microsoft Community.

    The error you get can be caused by components from Visual C++ Runtime libraries that are missing or get conflicted, perhaps due to a third party software or badly configured registry settings.

    So, I would suggest trying the following steps and check if the problem persists:

    Method 1:

    I suggest to install the Visual C++ Redistributable package in the system to boot and try to run the applications:

    Step 1: Clean boot of the system.

    Put your system to the clean boot state helps determine if third-party applications or startup items are causing the problem. You must follow the steps in the article mentioned below to perform a clean boot.

    How to perform a clean boot in Windows

    Note: refer to "How to reset the computer to start normally after a boot minimum troubleshooting" to reset the computer to start as usual after a repair.

    Step 2: Download the Microsoft Visual C++ 2013 and install.

    Click on the link below and install it on your computer.

    Package redistributable Visual C++ to Visual Studio 2013

    If she fails to install and then try to install the Package redistributable Visual C++ 2010 in compatibility mode. Follow the steps in the link given below to install Visual C++ 2010 redistributable Packages in compatibility mode. Please see the following article:

    Make the programs more compatible with this version of Windows

    If the problem persists, try the following method.

    Method 2:

    Try to run a scan of the file system (CFS) auditor to check corruption of system files in the system. SFC scan will search for system files corrupted on the computer and fix them.

    1. Press the Windows key + X, click prompt (Admin).
    2. In the command prompt, type the following command and press ENTER:
      sfc/scannow

    For more information, refer to this link:

    Use the System File Checker tool to repair missing or corrupted system files

    Hope this information is useful. Let us know if you need more help, we will be happy to help you.

  • Error creating the Spatial Index for SRID 8307 on newly hardened database

    Oracle 11g Rel2, Windows 2003 platform

    Help, please...

    Meeting with error message:
    ERROR on line 1:
    ORA-29855: an error has occurred in the execution of routine ODCIINDEXCREATE
    ORA-13249: internal error in the Spatial index: [mdidxrbd]
    ORA-13249: geodetic initialization error turn
    ORA-13249: SRID 8307 does not exist in the table MDSYS.CS_SRS
    ORA-29400: data cartridge error
    ORA-04063: package body 'MDSYS. SDO_CS"contains errors
    ORA-06512: at the 'MDSYS. SDO_INDEX_METHOD_10I', line 10

    After running the command

    INSERT INTO USER_SDO_GEOM_METADATA VALUES
    ("PointGeometry",
    "pointGeom,"
    MDSYS.sdo_dim_array (mdsys.sdo_dim_element ('Longitude',-180, 180, 1),
    mdsys.sdo_dim_element('Latitude',-90,90,1)),
    8307
    );

    CREATE the INDEX IDX_POINTGEOMETRY on PointGeometry (pointGeom) indextype is mdsys.spatial_index parameters('LAYER_GTYPE=POINT');

    When I ask mdsys.sdo_cs I see that there are actually SRID 8307. This index was created in this schema without problem. The problem only arises once the hardened customer database and we tried to recreate the schema (and index).

    Probably not coincidentally, I also get error:
    ORA-29855: an error has occurred in the execution of routine ODCIINDEXCREATE
    ORA-04063: package body "CTXSYS. DRIXMD' has errors
    ORA-06508: PL/SQL: called program unit is not found: 'CTXSYS. DRIXMD ".
    ORA-06512: at "CTXSYS. DRUE", line 145
    ORA-06512: at "CTXSYS. TEXTINDEXMETHODS', line 366
    ORA-04063: package body "CTXSYS. DRIXMD' has errors
    ORA-06508: PL/SQL: called program unit is not found: 'CTXSYS. DRIXMD ".

    When attempting to create and index Oracle Text context.

    Your help is greatly appreciated.

    Then, that's the problem.

    MDSYS user now has not run, and select privileges on the dbms_lob package.

    You must grant privileges on this package in MDSYS.

    Note that you can run into other issues of privilege package like this, so you must correct all by the granting of the
    required privileges for MDSYS.

    Siva

  • 11.5.9 to 11.5.10 upgrade missing file error - adrelink exit status 1

    I'm in the transformation of our system of 11.5.9 upgrade to 11.5.10.2 on a Linux 4.5.

    Although patch 4337683 I fell on the missing files that required me to apply patches 2214446 and 2284692. After going through the steps on both of these patches I always get a missing file error when he tries to recreate a link to ENCACN.

    I get the following error:
    $APPL_TOP/sht/11.5.0/lib/rwave/libstd8s.a: no such file or directory

    I searched for what either by reference to that particular file and can't find anything on the web. I also noticed that I have no sending directory and I also searched the whole score and this file does not exist. I have to miss another patch I think.

    Can someone tell me the missing hotfix?

    Thank you

    Tim

    Published by: user12055581 on November 5, 2009 12:45

    Hello

    Please see if these documents help.

    Note: 360673.1 - error in the reissue of "ENCACN" links - $SHT_TOP/Lib/Rwave/Libstd8s.A: No. Such File or Directory
    Note: 371424.1 - reissue of links WICMLX failed: /sht/11.5.0/lib/rwave/libstd8s.a: no such file or directory
    Note: 143992.1 - adrelink.sh fails with sh: VAC: not found

    If you can't find the fix missing in these documents, please log an SR.

    Kind regards
    Hussein

  • Obtaining ODI-1228: missing a setting IN or OUT to index: 12

    Hello

    I am getting error executing package following ODI:

    ODI-1226: step DATA_LOAD_STAGE fails after 1 attempt.
    ODI-1240: Flow DATA_LOAD_STAGE fails during a load operation. This flow of charge table target STAGE_ITEM_MOD_SYN.
    ODI-1228: SrcSet0 (load) task fails on ORACLE ORCL_NMC_INFC connection target.
    Caused by: java.sql.SQLException: parameter IN or OUT to missing index: 12

    Could you please say why this happens and how to solve it.

    Here is the generated code:

    SOURCE CODE:

    Select
    HE ITEM_NUMBER, C2_ITEM_NUMBER,.
    HE PRIMARY_DESC C6_PRIMARY_DESC,.
    HE SECONDARY_DESC C7_SECONDARY_DESC,.
    He UDA_Name C10_UDA_NAME,.
    HE UDA_VALUE C11_UDA_VALUE,.
    IT. IBC C3_IBC,.
    HE SUPPLIER_SITE C4_SUPPLIER_SITE,.
    HE PRIMARY_SUPP_IND C5_PRIMARY_SUPP_IND,.
    HE MODIFICATION_TYPE C1_MODIFICATION_TYPE,.
    HE C8_USER_ID USER_ID,
    HE CREATION_DATETIME C9_CREATION_DATETIME
    of #NMC_ITEM_MODIFICATION. V_FILE_PATH/INCOMING / / NMC_ITEM_MODIFICATION #. V_FILE_NAME.csv COMPUTER
    where (1 = 1)

    THE TARGET CODE:

    DECLARE
    err_num NUMBER;
    err_msg VARCHAR2 (300);
    BEGIN
    insert into ODISTG. C$ _0STAGE_ITEM_MOD_SYN
    (
    C2_ITEM_NUMBER,
    C6_PRIMARY_DESC,
    C7_SECONDARY_DESC,
    C10_UDA_NAME,
    C11_UDA_VALUE,
    C3_IBC,
    C4_SUPPLIER_SITE,
    C5_PRIMARY_SUPP_IND,
    C1_MODIFICATION_TYPE,
    C8_USER_ID,
    C9_CREATION_DATETIME
    )
    values
    (
    : C2_ITEM_NUMBER,.
    : C6_PRIMARY_DESC,.
    : C7_SECONDARY_DESC,.
    : C10_UDA_NAME,.
    : C11_UDA_VALUE,.
    : C3_IBC,.
    : C4_SUPPLIER_SITE,.
    : C5_PRIMARY_SUPP_IND,.
    : C1_MODIFICATION_TYPE,.
    : C8_USER_ID,.
    : C9_CREATION_DATETIME
    );
    exception
    while others then
    err_num: = SQLCODE;
    err_msg: = SUBSTR (SQLERRM, 1, 300);
    insert into odistg. ITEM_MODFCTN_ERROR (ITEM_NUMBER, ERR_MSSG) values (: C1_ITEM_NUMBER, err_msg);
    end;

    Thank you

    Lacombe

    In fact, I don't think that the error occurs in this part of the step (one of you sent the code). It's the command on the part of the target and it should arrive after loading the file. You can get the code at the stage of loading of the source and target area?

    Should be a step like that.

    In addition, could create another interface using the regular KM? Only for test purposes?

    Stage who sent you here runs in the part of integration (insert new lines), and the only different thing it does is that if the insert cannot insert something (such as an invalid character in a number of columns or something like that) it will record the error in a table error.

  • Parameter missing or NOT to index in ODI

    Hi all

    I use ODI 11.6

    I am facing the error while working on the sequence generator in ODI below. I pass the sequence as (: SP_OFFER_OFFER_ID_SEQ.) NEXTVAL)
    Its a mapping Table to Table.

    ODI-1217: INT_TEMP_TO_OFFER Session (757011) fails with return code 17041.
    ODI-1226: step INT_TEMP_TO_OFFER fails after 1 attempt.
    ODI-1240: Flow INT_TEMP_TO_OFFER fails during an operation of integration. This flow of charge table target SP_OFFER.
    ODI-1228: failed INT_TO_OFFER (integration) task on the target ORACLE PROPRIETARY connection.
    Caused by: java.sql.SQLException: parameter IN or OUT to missing index: 1

    The code is

    / * DETECTION_STRATEGY = NOT_EXISTS * /.
    Insert the OWNER. SP_OFFER T
    (
    CAMPGN_NO,
    CAMP_OFF
    OFFER_ID
    )
    Select CAMPGN_NO,
    CAMP_OFF
    ,: SP_OFFER_OFFER_ID_SEQ. NEXTVAL
    from an OWNER. I HAVE$ _SP_OFFER S



    where IND_UPDATE = 'I '.

    Please let me know how to solve this problem

    Thank you
    Lony

    Yes run on the implementation stage and target should be there. Also if you use the incremental update you could face another sequence of error numbers are not allowed here.
    Takecare of it.

Maybe you are looking for