HELP: DEADLINE!!!! ERROR PLS-00306: WITH APPENDCHILD

I am new to this... any help is greatly appreciated..
set serveroutput on
CREATE OR REPLACE FUNCTION uf_buildWRDetail(pi_lWRNum IN NUMBER) RETURN VARCHAR2 IS
xmlDoc xmlDom.DOMDocument;
xmlDocOriginal xmlDom.DOMDocument;
xmlDocAddOn xmlDom.DOMDocument;
parserWRDetail xmlparser.Parser;
parserWRAssoc xmlparser.Parser;
parserTemp xmlparser.Parser;
xmlDocElementO xmlDom.DOMElement;
xmlDocElementA xmlDom.DOMElement;
el xmlDom.DOMElement;
xmlDOMList xmlDOM.DOMNodeList;
xmlDOMNodeO xmlDOM.DOMNode;
xmlDOMNodeA xmlDOM.DOMNode;
xmlNodeVal xmlDOM.DOMNode;
xmlNodeName xmlDOM.DOMNode;
docNodeROOT xmlDOM.DOMNode;
docNodeROWSET xmlDOM.DOMNode;
docNodeROW xmlDOM.DOMNode;
docNodeFIELD xmlDOM.DOMNode;
docNodeTEXT xmlDOM.DOMNode;
nodeAssocParty xmlDOM.DOMNode;
nodeAPROW xmlDOM.DOMNode;
xmlElement xmlDOM.DOMElement;
cWRDetail CLOB;
cWRAssoc CLOB;
sNodeName VARCHAR2(2000);
sNodeValue VARCHAR2(2000);
nodeCount NUMBER;
sTempOut VARCHAR2(32767);
temp2 varchar2(255);
BEGIN
--=======================================================================
-- MASTER OUT
--=======================================================================
parserTemp := xmlparser.newParser;
xmlparser.parseBuffer(parserTemp,'<ROWSET/>');
xmlDoc := xmlparser.getDocument(parserTemp);
xmldom.setVersion(xmlDoc, '1.0');
docNodeROOT := xmldom.makeNode(xmlDoc);
docNodeROWSET := xmldom.getLastChild(docNodeROOT);
el := xmldom.createElement(xmlDoc, 'ROW');
docNodeROW := xmldom.appendChild(docNodeROWSET, xmldom.makeNode(el));
--=======================================================================
-- WORK DETAIL
--=======================================================================
-- this function returns a clob with the standard ROWSET/ROW namings
--==============================================================================
select uf_getWRDetail(pi_lWRNum) into cWRDetail from dual;
--=============================================================================
parserWRDetail := xmlparser.newParser;
xmlparser.ParseCLOB(parserWRDetail, cWRDetail);
xmlDocOriginal := xmlparser.getDocument(parserWRDetail);
xmlDOMList := xmldom.getElementsByTagName(xmlDocOriginal, '*');
nodeCount := xmldom.getLength(xmlDOMList);
if nodeCount > 0 then
for i in 2..nodeCount-1 loop
xmlDOMNodeO := xmldom.item(xmlDOMList, i);
sNodeName := xmldom.getNodeName(xmlDOMNodeO);
xmlDOMNodeO := xmldom.getFirstChild(xmlDOMNodeO);
sNodeValue := xmldom.getNodeValue(xmlDOMNodeO);
docNodeFIELD := xmldom.makeNode(xmldom.createElement(xmlDoc, sNodeName));
docNodeTEXT := xmldom.makeNode(xmldom.createTextNode(xmlDoc, NVL(sNodeValue,' ')));
xmlNodeVal := xmldom.appendChild(docNodeROW, docNodeFIELD);
xmlNodeVal := xmldom.appendChild(docNodeFIELD, sNodeValue);
end loop;
end if;
--=======================================================================
-- WORK DETAIL END
--=======================================================================
-- TEMPORARILTY REMOVED...
--=======================================================================
-- ASSOCIATED PARTIES
--=======================================================================
-- select uf_getWRAssocParties(pi_lWRNum) into cWRAssoc from dual;
-- parserWRAssoc := xmlparser.newParser;
-- xmlparser.ParseCLOB(parserWRAssoc, cWRAssoc);
-- xmlDocAddOn := xmlparser.getDocument(parserWRAssoc);
-- xmlDOMList := xmldom.getElementsByTagName(xmlDocAddOn, '*');
-- nodeCount := xmldom.getLength(xmlDOMList);
-- if nodeCount > 0 then
-- el := xmldom.createElement(xmlDoc, 'ASSOCPARTIES');
-- nodeAssocParty := xmldom.appendChild(docNodeROW, xmldom.makeNode(el));
-- for i in 2..nodeCount-1 loop
-- el := xmldom.createElement(xmlDoc, 'ASSOCPARTIESROW');
-- nodeAPROW := xmldom.appendChild(nodeAssocParty, xmldom.makeNode(el));
-- xmlDOMNodeO := xmldom.item(xmlDOMList, i);
-- sNodeName := xmldom.getNodeName(xmlDOMNodeO);
-- xmlDOMNodeO := xmldom.getFirstChild(xmlDOMNodeO);
-- sNodeValue := xmldom.getNo deValue(xmlDOMNodeO);
-- docNodeFIELD := xmldom.makeNode(xmldom.createElement(xmlDoc, sNodeName));
-- docNodeTEXT := xmldom.makeNode(xmldom.createTextNode(xmlDoc, NVL(sNodeValue,' ')));
-- xmlNodeVal := xmldom.appendChild(nodeAPROW, docNodeFIELD);
-- xmlNodeVal := xmldom.appendChild(docNodeFIELD, sNodeValue);
-- end loop;
-- end if;
--=======================================================================
-- ASSOCIATED PARTIES END
--=======================================================================
xmldom.writeToBuffer(xmlDoc, sTempOut);
RETURN sTempOut;
END;
/

Hello!
Please check Type and Number of Parameters of the called Procedure/Function
This is a common PL/SQL-Error, not an XML-specific one.
Bye and be blessed

Similar Messages

  • Error PLS-00306: wrong number or types of arguments in call to

    I am getting the following Error when calling stored Procedure, I have tried with Last Parameter PRESULT and WITHOUT IT, it fails in both the instance.
    =======================================================================
    "System.Data.OracleClient.OracleException: ORA-06550: line 1, column 7:
    PLS-00306: wrong number or types of arguments in call to 'UPDATECOTRACKING'
    ORA-06550: line 1, column 7:
    PL/SQL: Statement ignored
    =======================================================================
    signature of Stored Procedure is as follow
    (pmaster_key IN sca_costtrackinglog.master_key%type,
         pdoc_master_key IN sca_costtrackinglog.master_key%type,     
    pfrenumber IN sca_costtrackinglog.fre_number%type,     
    pnotice1 IN sca_costtrackinglog.notice1%type,
    pnotice2 IN sca_costtrackinglog.notice2%type,
    padditreceived IN sca_costtrackinglog.additreceived%type,
    pfreanticipate IN sca_costtrackinglog.freanticipate%type,
    pdateofnot IN sca_costtrackinglog.dateofnot%type,
    pdateofmeeting IN sca_costtrackinglog.dateofmeeting%type,
    psenttocontractor IN sca_costtrackinglog.senttocontractor%type,
    pcouforexecution IN sca_costtrackinglog.couforexecution%type,
    pcomments IN sca_costtrackinglog.comments%type,
    pcreateby IN sca_costtrackinglog.createby%type,
    peditby IN sca_costtrackinglog.editby%type,
         presult OUT number) is
    This is the Trace of Parameters from actual Call, that fails with above error.
    Parameter Name : PMASTER_KEY(Input),Type(AnsiString) Size(26), Value = 000328JYA30008HSWBCK01NYC
    Parameter Name : pdoc_master_key(Input),Type(AnsiString) Size(26), Value = 310657KLF30025HSWBCK01NYC
    Parameter Name : PFRENUMBER(Input),Type(AnsiString) Size(12), Value = 00015
    Parameter Name : PNOTICE1(Input),Type(DateTime) Size(1), Value = 3/25/2010
    Parameter Name : PNOTICE2(Input),Type(DateTime) Size(1), Value =
    Parameter Name : PADDITRECEIVED(Input),Type(DateTime) Size(1), Value =
    Parameter Name : PFREANTICIPATE(Input),Type(DateTime) Size(1), Value =
    Parameter Name : PDATEOFNOT(Input),Type(DateTime) Size(1), Value =
    Parameter Name : PDATEOFMEETING(Input),Type(DateTime) Size(1), Value =
    Parameter Name : PSENTTOCONTRACTOR(Input),Type(DateTime) Size(1), Value =
    Parameter Name : pcouforexecution(Input),Type(DateTime) Size(1), Value =
    Parameter Name : pcomments(Input),Type(AnsiString) Size(250), Value =
    Parameter Name : PCREATEBY(Input),Type(AnsiString) Size(50), Value = NYCSCA\tmpns2
    Parameter Name : PEDITBY(Input),Type(AnsiString) Size(50), Value = NYCSCA\tmpns2
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    Below is the trace from Data.OracleClient.OracleCommandBuilder.DeriveParameters(Cmd)
    Parameter Name : PMASTER_KEY(Input),Type(AnsiString) Size(2000), Value =
    Parameter Name : PDOC_MASTER_KEY(Input),Type(AnsiString) Size(2000), Value =
    Parameter Name : PFRENUMBER(Input),Type(AnsiString) Size(2000), Value =
    Parameter Name : PNOTICE1(Input),Type(DateTime) Size(0), Value =
    Parameter Name : PNOTICE2(Input),Type(DateTime) Size(0), Value =
    Parameter Name : PADDITRECEIVED(Input),Type(DateTime) Size(0), Value =
    Parameter Name : PFREANTICIPATE(Input),Type(DateTime) Size(0), Value =
    Parameter Name : PDATEOFNOT(Input),Type(DateTime) Size(0), Value =
    Parameter Name : PDATEOFMEETING(Input),Type(DateTime) Size(0), Value =
    Parameter Name : PSENTTOCONTRACTOR(Input),Type(DateTime) Size(0), Value =
    Parameter Name : PCOUFOREXECUTION(Input),Type(DateTime) Size(0), Value =
    Parameter Name : PCOMMENTS(Input),Type(AnsiString) Size(2000), Value =
    Parameter Name : PCREATEBY(Input),Type(AnsiString) Size(2000), Value =
    Parameter Name : PEDITBY(Input),Type(AnsiString) Size(2000), Value =
    Parameter Name : PRESULT(Output),Type(VarNumeric) Size(0), Value =
    ******************************************************************************************************************

    In the Oracle database, the body of the package FWA_PRI API, the procedure ValidatePri declares P_PriREc as being :
    PAYMENT_REQUEST_IMPORT%ROWTYPE
    As you can see above, the DoPri Procedure expects a type p_PriRec as its second argument.
    Therefore in my procedure I do the following:
    create or replace procedure spMatchPayment is
    BEGIN
    DECLARE
           CURSOR StageCurs IS SELECT * FROM PAYMENT_REQUEST_IMPORT;
                  p_payment_req_import PAYMENT_REQUEST_IMPORT%ROWTYPE;
                  BEGIN
                       OPEN StageCurs();
                            LOOP
                                FETCH StageCurs INTO P_payment_req_import;
                                EXIT WHEN StageCurs%NOTFOUND;
                                fwa_pri.DoPri(NULL, fwa_pri.DoPri('M',P_PriRec => p_payment_req_import);                           
                             END LOOP;
                        CLOSE StageCurs;
                   END;
    end spMatchPayment;
    Now, when I am trying to compile I am getting the Compilation errors for PROCEDURE IMPACT.SPMATCHPAYMENT
    Error: PLS-00306: wrong number or types of arguments in call to 'DOPRI'
    Line: 16
    Text: fwa_pri.DoPri(NULL,P_PriRec => p_payment_req_import);
    I don't see what's wrong on my code......HELP!!

  • SSRS Calling a Stored Procedure error : PLS-00306: wrong number or types of arg...

    Hi,
    My Problem is when im adding dataset with stored procedure, im getting this error.
    I Can access database, 
    Could not create a list of fields for the query. Verify that you can connect to the data source and that your query syntax is correct.
    ORA-06550: line 1, column 7: PLS-00306: wrong number or types of arguments in call to 'PROCEDURE_NAME' ORA-06550: line 1, column 7: PL/SQL:
    Statement ignored
    stored procedure is simple select :
    CREATE OR REPLACE PROCEDURE [PROCEDURE_NAME](L_CURSOR out SYS_REFCURSOR)
    is
    Begin
    open L_CURSOR for
    SELECT [columnname] FROM
    [tablename]
    End;
    Configuration Details:
    DB: Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64biOracle Developer Tools for Visual Studio Copyright (c) 2005,2014 SQL Server Data Tools Type: Oracle , Data Provider : .Net Framework Data Provider For Oracle

    The answer is of inside question. It is about provider. Change my provider ODTwithODAC for 10g (my database version). And problem resolved.
    Thank you for your helps,
    Regards,
    Arda

  • Error PLS-00306 during calling PL/SQL function from Java

    Hi all,
    I am facing a problem during call of oracle PL/SQL function from java using CallableStatement.
    I receive following error message.
    java.sql.SQLException: ORA-06550: line 1, column 13:
    PLS-00306: wrong number or types of arguments in call to 'EXPORT_HIST_ALARMS_FUNC'
    ORA-06550: line 1, column 7:
    PL/SQL: Statement ignored
    As per above error EXPORT_HIST_ALARMS_FUNC in oracle has this signature.
    CREATE OR REPLACE FUNCTION EXPORT_HIST_ALARMS_FUNC(startDateTime VARCHAR2, endDateTime VARCHAR2, meType VARCHAR2) RETURN VARCHAR2 IS
    END EXPORT_HIST_ALARMS_FUNC;
    Above function I have called following way in java.
    String sql = "begin ?:= EXPORT_HIST_ALARMS_FUNC(?, ?, ?); end;" ;
    CallableStatement cStatement = null;
    cStatement = connection.prepareCall(sql);
    cStatement.registerOutParameter(1,Types.VARCHAR);
    cStatement.setString(2,startDateTime);
    cStatement.setString(3,endDateTime);
    cStatement.setString(4,meType);
    cStatement.execute();
    msg = cStatement.getString(1);
    Actually above function requires three input parameters and one return parameter.
    During execution of above java code it throws SQLException and shows PLS-00306: wrong number or types of arguments in call to 'EXPORT_HIST_ALARMS_FUNC' error.
    I have run this function directly from oracle with three parameters and run successfully and finally it returns string.
    But I am unable to figure out why it doesn't run from above java code.
    Please help regarding this.
    Thanks.
    Regards,
    Shardul Banker

    Try this:
    String sql = "begin ?:= EXPORT_HIST_ALARMS_FUNC(?, ?, ?); end;" ;
    CallableStatement cStatement = null;
    cStatement = connection.prepareCall(sql);
    cStatement.registerOutParameter(1,Types.VARCHAR);
    cStatement.setString(1,startDateTime);
    cStatement.setString(2,endDateTime);
    cStatement.setString(3,meType);
    cStatement.execute();
    msg = cStatement.getString(1);Regards,
    Martijn Teigeler
    Edited by: mTeigeler on Oct 13, 2007 10:22 AM

  • Error : PLS-00306: wrong number or types of arguments

    Hi,
    I have created a function :
    create or replace procedure Test11 AS
    x Test.Emp_No%Type;
    Begin
    select emp_no into x from Test where name = 'Sud';
    x := x + 1;
    update Test set emp_no = x where emp_no < 100;
    commit;
    end Test11;
    This has compiled successfully in PL/SQL Developer. Now, I have created an executable of this procedure in Front end - 11i. And then I have created a Program of this executable. Then I have added this program to a request group.
    Now that I am running this request and I getting this error in the log :
    ORACLE error 6550 in FDPSTP
    Cause: FDPSTP failed due to ORA-06550: line 1, column 7:
    PLS-00306: wrong number or types of arguments in call to 'TEST11'
    ORA-06550: line 1, column 7:
    PL/SQL: Statement ignored
    .

    Hi,
    Your procedure is a little confusing. By the way, this procedure has no parameters and I supose that maybe you are calling it with some parameter. Could you check this please?
    Tip: post your code inside tags (start and end tag are the same) to proper formatting :)
    Regards,
    Edited by: Walter Fernández on Dec 3, 2008 10:53 AM - Adding tip...                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Unable to generate the XML file through SQL script. getting error PLS-00306

    I am fetching the data from cursor and generating the xml output I am getting the below error.
    When I have checked the cursor query it is fetching the data in to single column.
    Input truncated to 1 characters
    Enter value for 7: EXEC FND_CONC_STAT.COLLECT;
    DBMS_LOB.append (tmp_file, r.core_xml);
    ERROR at line 95:
    ORA-06550: line 95, column 7:
    PLS-00306: wrong number or types of arguments in call to 'APPEND'
    ORA-06550: line 95, column 7:
    PL/SQL: Statement ignored

    Hi Alex,
    thanks for the responce..
    i have fixed the issue
    i have used XMLAttributes to get the value
    SELECT XMLELEMENT (
    NAME "TranACK",
    XMLAttributes ('1' as "TranNum",
    (select distinct to_char(SYSDATE,'yyyy-mm-dd')
    from DUAL) as "PrcDate"),
    XMLFOREST (
    a.PAYMENT_ID AS "PmtID"),
    XMLFOREST (
    a.ACK_TRANSACTION_RECEIVER AS "Name1"),
    XMLFOREST (
    to_char(a.VALUE_DATE,'yyyy-mm-dd') as "ValueDate" ),
    XMLFOREST (
    a.PAYMENT_AMOUNT AS "CurAmt"),
    XMLFOREST (
    a.CURRENCY_CODE AS "CurCode")
    ).getclobval ()
    AS line_xml
    FROM XXWAP_PAYMENT_LINE_TBL a
    where a.PAYMENT_BATCH_ID=P_batch_id;

  • ERROR  PLS-00306

    PL / SQL: Statement ignored
    PLS-00306: incorrect number of types of arguments in call
    to 'INCLUIR'
    WHY?
    PROCEDURE incluir(
    p_id_frota_cliente IN OUT frota_cliente.id_frota_cliente%TYPE,
    p_id_cliente IN frota_cliente.id_cliente%TYPE,
    p_limite_mensal IN frota_cliente.limite_mensal%TYPE,
    p_limite_trans IN frota_cliente.limite_trans%TYPE,
    p_qtd_max_litros IN frota_cliente.qtd_max_litros%TYPE,
    p_valor_max IN frota_cliente.valor_max%TYPE,
    p_ver_agenda_condutor IN frota_cliente.ver_agenda_condutor%TYPE,
    p_ver_km IN frota_cliente.ver_km%TYPE,
    p_ver_valor_max IN frota_cliente.ver_valor_max%TYPE,
    p_diaval_carta_credito IN frota_cliente.diaval_carta_credito%TYPE
    IN OTHER PROCEDURE I CALL THE PROCEDURE ABOVE:
    incluir(p_id_cliente => p_id_empresa);

    Because you haven't got a variable to hold your IN OUT parameter (p_id_frota_cliente IN OUT frota_cliente.id_frota_cliente%TYPE).
    Also, in order for IN parameters to be considered optional (OUT or IN OUT parameters can't be optional) you need to use the default clause to specify a value when one hasn't been provided.
    Eg:
    SQL> create or replace procedure test (p1 in varchar2,
      2                                    p2 in varchar2)
      3  is
      4  begin
      5    null;
      6  end test;
      7  /
    Procedure created.
    SQL>
    SQL> begin
      2    test(p1 => 'hi');
      3  end;
      4  /
      test(p1 => 'hi');
    ERROR at line 2:
    ORA-06550: line 2, column 3:
    PLS-00306: wrong number or types of arguments in call to 'TEST'
    ORA-06550: line 2, column 3:
    PL/SQL: Statement ignored
    SQL>
    SQL> create or replace procedure test (p1 in varchar2,
      2                                    p2 in varchar2 default null)
      3  is
      4  begin
      5    null;
      6  end test;
      7  /
    Procedure created.
    SQL>
    SQL> begin
      2    test(p1 => 'hi');
      3  end;
      4  /
    PL/SQL procedure successfully completed.

  • Help ME [ Error: InitFastLoad failed with 3 : can't fastload LoBs ]

    Dear Expert,
    During installation of SAP ERP 2005, I have got error "InitFastLoad failed with <3 : can't fastload LoBs>" while runing "Import ABAP".
    Can you sir please help me out how do I resolve this problem ? Installation has got stuck at that stage....
    So I agressively looking for your positive reply(solution), please .....
    F:\usr\sap\D11\SYS\exe\uc\NTI386\R3load.exe: START OF LOG: 20080428160335
    F:\usr\sap\D11\SYS\exe\uc\NTI386\R3load.exe: sccsid @(#) $Id: //bas/700_REL/src/R3ld/R3load/R3ldmain.c#13 $ SAP
    F:\usr\sap\D11\SYS\exe\uc\NTI386\R3load.exe: version R7.00/V1.4 [UNICODE]
    Compiled Jul 17 2007 01:28:45
    F:\usr\sap\D11\SYS\exe\uc\NTI386\R3load.exe -ctf I E:\DVDdump\EXP\exp4\EXP4\DATA\SAPSSEXC.STR C:\Program Files\sapinst_instdir\ERP\SYSTEM\MSS\CENTRAL\AS\DDLMSS.TPL SAPSSEXC.TSK MSS -l SAPSSEXC.log
    F:\usr\sap\D11\SYS\exe\uc\NTI386\R3load.exe: job completed
    F:\usr\sap\D11\SYS\exe\uc\NTI386\R3load.exe: END OF LOG: 20080428160335
    F:\usr\sap\D11\SYS\exe\uc\NTI386\R3load.exe: START OF LOG: 20080428160336
    F:\usr\sap\D11\SYS\exe\uc\NTI386\R3load.exe: sccsid @(#) $Id: //bas/700_REL/src/R3ld/R3load/R3ldmain.c#13 $ SAP
    F:\usr\sap\D11\SYS\exe\uc\NTI386\R3load.exe: version R7.00/V1.4 [UNICODE]
    Compiled Jul 17 2007 01:28:45
    F:\usr\sap\D11\SYS\exe\uc\NTI386\R3load.exe -i SAPSSEXC.cmd -dbcodepage 4103 -l SAPSSEXC.log -loadprocedure fast
    (DB) INFO: connected to DB
    (DB) INFO: AAB_ID_PROP created
    (DB) INFO: AAB_ID_PROP~0 created
    Interface access functions from dynamic library dbmssslib.dll loaded.
    (IMP) INFO: import of AAB_ID_PROP completed (751 rows) #20080428160342
    (DB) INFO: AAB_ID_PROPT created
    (DB) INFO: AAB_ID_PROPT~0 created
    (IMP) INFO: import of AAB_ID_PROPT completed (12629 rows) #20080428160347
    (DB) INFO: BRATEXT created
    (DB) INFO: BRATEXT~0 created
    (IMP) INFO: import of BRATEXT completed (229628 rows) #20080428160443
    (DB) INFO: D010INC created
    (DB) INFO: D010INC~0 created
    (IMP) INFO: import of D010INC completed (16063844 rows) #20080428163452
    (DB) INFO: D010INC~1 created
    (DB) INFO: D010TAB created
    (DB) INFO: D010TAB~0 created
    (IMP) INFO: import of D010TAB completed (47877498 rows) #20080428191531
    (DB) INFO: D010TAB~1 created
    (DB) INFO: D020S created
    (DB) INFO: D020S~0 created
    (IMP) INFO: import of D020S completed (190477 rows) #20080428202652
    (DB) INFO: D020T created
    (DB) INFO: D020T~0 created
    (IMP) INFO: import of D020T completed (854106 rows) #20080428202916
    (DB) INFO: D021T created
    (DB) INFO: D021T~0 created
    (IMP) INFO: import of D021T completed (7164013 rows) #20080428210110
    (DB) INFO: D301T created
    (DB) INFO: D301T~0 created
    (IMP) INFO: import of D301T completed (6654 rows) #20080428210110
    (DB) INFO: D301T~A created
    (DB) INFO: D345T created
    (DB) INFO: D345T~0 created
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: import of D345T completed (6585 rows) #20080428210240
    (DB) INFO: D347T created
    (DB) INFO: D347T~0 created
    (IMP) INFO: import of D347T completed (57433 rows) #20080428210255
    (DB) INFO: DBDIFF created
    (DB) INFO: DBDIFF~0 created
    (IMP) INFO: import of DBDIFF completed (205 rows) #20080428210256
    (DB) INFO: DBMAPS created
    (DB) INFO: DBMAPS~0 created
    (IMP) INFO: import of DBMAPS completed (0 rows) #20080428210256
    (DB) INFO: DD01L created
    (DB) INFO: DD01L~0 created
    (IMP) INFO: import of DD01L completed (76408 rows) #20080428210307
    (DB) INFO: DD01L~1 created
    (DB) INFO: DD01T created
    (DB) INFO: DD01T~0 created
    (IMP) INFO: import of DD01T completed (1249769 rows) #20080428210607
    (DB) INFO: DD02L created
    (DB) INFO: DD02L~0 created
    (IMP) INFO: import of DD02L completed (321686 rows) #20080428210738
    (DB) INFO: DD02L~1 created
    (DB) INFO: DD02T created
    (DB) INFO: DD02T~0 created
    (IMP) INFO: import of DD02T completed (4537088 rows) #20080428212410
    (DB) INFO: DD03L created
    (DB) INFO: DD03L~0 created
    (IMP) INFO: import of DD03L completed (5159366 rows) #20080428215555
    (DB) INFO: DD03L~1 created
    (DB) INFO: DD03L~2 created
    (DB) INFO: DD03L~3 created
    (DB) INFO: DD03L~4 created
    (DB) INFO: DD03L~5 created
    (DB) INFO: DD03L~6 created
    (DB) INFO: DD03L~7 created
    (DB) INFO: DD03T created
    (DB) INFO: DD03T~0 created
    (IMP) INFO: import of DD03T completed (1028548 rows) #20080428231122
    (DB) INFO: DD04L created
    (DB) INFO: DD04L~0 created
    (IMP) INFO: import of DD04L completed (356654 rows) #20080428231258
    (DB) INFO: DD04L~1 created
    (DB) INFO: DD04T created
    (DB) INFO: DD04T~0 created
    (IMP) INFO: import of DD04T completed (5545988 rows) #20080428234900
    (DB) INFO: DD06L created
    (DB) INFO: DD06L~0 created
    (IMP) INFO: import of DD06L completed (172 rows) #20080428234900
    (DB) INFO: DD06T created
    (DB) INFO: DD06T~0 created
    (IMP) INFO: import of DD06T completed (1277 rows) #20080428234901
    (DB) INFO: DD07L created
    (DB) INFO: DD07L~0 created
    (IMP) INFO: import of DD07L completed (144328 rows) #20080428234937
    (DB) INFO: DD07T created
    (DB) INFO: DD07T~0 created
    (IMP) INFO: import of DD07T completed (2408004 rows) #20080429000135
    (DB) INFO: DD09L created
    (DB) INFO: DD09L~0 created
    (IMP) INFO: import of DD09L completed (74473 rows) #20080429000143
    (DB) INFO: DD20L created
    (DB) INFO: DD20L~0 created
    (IMP) INFO: import of DD20L completed (216 rows) #20080429000145
    (DB) INFO: DD25L created
    (DB) INFO: DD25L~0 created
    (IMP) INFO: import of DD25L completed (47312 rows) #20080429000202
    (DB) INFO: DD25L~1 created
    (DB) INFO: DD26S created
    (DB) INFO: DD26S~0 created
    (IMP) INFO: import of DD26S completed (116670 rows) #20080429000235
    (DB) INFO: DD26S~1 created
    (DB) INFO: DD26S~2 created
    (DB) INFO: DD27S created
    (DB) INFO: DD27S~0 created
    (IMP) INFO: import of DD27S completed (488120 rows) #20080429000409
    (DB) INFO: DD27S~1 created
    (DB) INFO: DD27S~2 created
    (DB) INFO: DD28S created
    (DB) INFO: DD28S~0 created
    (IMP) INFO: import of DD28S completed (71637 rows) #20080429000529
    (DB) INFO: DD29L created
    (DB) INFO: DD29L~0 created
    (IMP) INFO: import of DD29L completed (42217 rows) #20080429000550
    (DB) INFO: DD30L created
    (DB) INFO: DD30L~0 created
    (IMP) INFO: import of DD30L completed (14872 rows) #20080429000600
    (DB) INFO: DD30L~EXI created
    (DB) INFO: DD30L~MET created
    (DB) INFO: DD30L~TXT created
    (DB) INFO: DD30T created
    (DB) INFO: DD30T~0 created
    (IMP) INFO: import of DD30T completed (248836 rows) #20080429000725
    (DB) INFO: DD31S created
    (DB) INFO: DD31S~0 created
    (IMP) INFO: import of DD31S completed (22382 rows) #20080429000727
    (DB) INFO: DD32S created
    (DB) INFO: DD32S~0 created
    (IMP) INFO: import of DD32S completed (65354 rows) #20080429000750
    (DB) INFO: DD32S~ROL created
    (DB) INFO: DD32S~SQL created
    (DB) INFO: DD33S created
    (DB) INFO: DD33S~0 created
    (IMP) INFO: import of DD33S completed (67354 rows) #20080429000820
    (DB) INFO: DD35L created
    (DB) INFO: DD35L~0 created
    (IMP) INFO: import of DD35L completed (62242 rows) #20080429000843
    (DB) INFO: DD35L~1 created
    (DB) INFO: DD36S created
    (DB) INFO: DD36S~0 created
    (IMP) INFO: import of DD36S completed (222177 rows) #20080429000912
    (DB) INFO: DD40L created
    (DB) INFO: DD40L~0 created
    (IMP) INFO: import of DD40L completed (83102 rows) #20080429000924
    (DB) INFO: DD40L~1 created
    (DB) INFO: DD40T created
    (DB) INFO: DD40T~0 created
    (IMP) INFO: import of DD40T completed (1288553 rows) #20080429001529
    (DB) INFO: DD42S created
    (DB) INFO: DD42S~0 created
    (IMP) INFO: import of DD42S completed (30753 rows) #20080429001539
    (DB) INFO: DDTYPES created
    (DB) INFO: DDTYPES~0 created
    (IMP) INFO: import of DDTYPES completed (821974 rows) #20080429001747
    (DB) INFO: DDTYPET created
    (DB) INFO: DDTYPET~0 created
    (IMP) INFO: import of DDTYPET completed (62242 rows) #20080429001810
    (DB) INFO: DDXTF created
    (DB) INFO: DDXTF~0 created
    (IMP) INFO: import of DDXTF completed (0 rows) #20080429001811
    (DB) INFO: DDXTF_CONV_UC created
    (DB) INFO: DDXTF_CONV_UC~0 created
    (IMP) INFO: import of DDXTF_CONV_UC completed (0 rows) #20080429001817
    (DB) INFO: DDXTT created
    (DB) INFO: DDXTT~0 created
    (IMP) INFO: import of DDXTT completed (0 rows) #20080429001822
    (DB) INFO: DDXTT_CONV_UC created
    (DB) INFO: DDXTT_CONV_UC~0 created
    (IMP) INFO: import of DDXTT_CONV_UC completed (0 rows) #20080429001823
    (DB) INFO: DF03L created
    (DB) INFO: DF03L~0 created
    (IMP) INFO: import of DF03L completed (1764 rows) #20080429001825
    (DB) INFO: DF03L~ARI created
    (DB) INFO: DF03T created
    (DB) INFO: DF03T~0 created
    (IMP) INFO: import of DF03T completed (216352 rows) #20080429002017
    (DB) INFO: DF03T~OBJ created
    (DB) INFO: DF04L created
    (DB) INFO: DF04L~0 created
    (IMP) INFO: import of DF04L completed (3715 rows) #20080429002030
    (DB) INFO: DF04L~ARI created
    (DB) INFO: DF04L~STR created
    (DB) INFO: DF04L~SYN created
    (DB) INFO: DF04T created
    (DB) INFO: DF04T~0 created
    (IMP) INFO: import of DF04T completed (35845 rows) #20080429002048
    (DB) INFO: DF04T~OBJ created
    (DB) INFO: DF06L created
    (DB) INFO: DF06L~0 created
    (IMP) INFO: import of DF06L completed (0 rows) #20080429002049
    (DB) INFO: DF06L~ARI created
    (DB) INFO: DF06T created
    (DB) INFO: DF06T~0 created
    (IMP) INFO: import of DF06T completed (0 rows) #20080429002050
    (DB) INFO: DF07L created
    (DB) INFO: DF07L~0 created
    (IMP) INFO: import of DF07L completed (0 rows) #20080429002050
    (DB) INFO: DF07L~ARI created
    (DB) INFO: DF07L~OVW created
    (DB) INFO: DF07T created
    (DB) INFO: DF07T~0 created
    (IMP) INFO: import of DF07T completed (0 rows) #20080429002051
    (DB) INFO: DF08L created
    (DB) INFO: DF08L~0 created
    (IMP) INFO: import of DF08L completed (0 rows) #20080429002052
    (DB) INFO: DF08L~ARI created
    (DB) INFO: DF08T created
    (DB) INFO: DF08T~0 created
    (IMP) INFO: import of DF08T completed (0 rows) #20080429002053
    (DB) INFO: DF10L created
    (DB) INFO: DF10L~0 created
    (IMP) INFO: import of DF10L completed (0 rows) #20080429002055
    (DB) INFO: DF10L~ARI created
    (DB) INFO: DF10L~PRE created
    (DB) INFO: DF10L~SUC created
    (DB) INFO: DF10T created
    (DB) INFO: DF10T~0 created
    (IMP) INFO: import of DF10T completed (0 rows) #20080429002057
    (DB) INFO: DF11L created
    (DB) INFO: DF11L~0 created
    (IMP) INFO: import of DF11L completed (0 rows) #20080429002058
    (DB) INFO: DF11L~ARI created
    (DB) INFO: DF11L~REF created
    (DB) INFO: DF11T created
    (DB) INFO: DF11T~0 created
    (IMP) INFO: import of DF11T completed (0 rows) #20080429002059
    (DB) INFO: DF12L created
    (DB) INFO: DF12L~0 created
    (IMP) INFO: import of DF12L completed (17 rows) #20080429002100
    (DB) INFO: DF12L~ARI created
    (DB) INFO: DF12L~REF created
    (DB) INFO: DF12T created
    (DB) INFO: DF12T~0 created
    (IMP) INFO: import of DF12T completed (17 rows) #20080429002101
    (DB) INFO: DF13L created
    (DB) INFO: DF13L~0 created
    (IMP) INFO: import of DF13L completed (0 rows) #20080429002103
    (DB) INFO: DF13L~ARI created
    (DB) INFO: DF13T created
    (DB) INFO: DF13T~0 created
    (IMP) INFO: import of DF13T completed (0 rows) #20080429002103
    (DB) INFO: DF14L created
    (DB) INFO: DF14L~0 created
    (IMP) INFO: import of DF14L completed (5079 rows) #20080429002107
    (DB) INFO: DF14L~ARI created
    (DB) INFO: DF14L~PS created
    (DB) INFO: DF14L~REF created
    (DB) INFO: DF14T created
    (DB) INFO: DF14T~0 created
    (IMP) INFO: import of DF14T completed (108405 rows) #20080429002147
    (DB) INFO: DF14T~OBJ created
    (DB) INFO: DF15L created
    (DB) INFO: DF15L~0 created
    (IMP) INFO: import of DF15L completed (0 rows) #20080429002151
    (DB) INFO: DF15L~ARI created
    (DB) INFO: DF15T created
    (DB) INFO: DF15T~0 created
    (IMP) INFO: import of DF15T completed (0 rows) #20080429002152
    (DB) INFO: DF16L created
    (DB) INFO: DF16L~0 created
    (IMP) INFO: import of DF16L completed (724 rows) #20080429002154
    (DB) INFO: DF16L~REF created
    (DB) INFO: DF16T created
    (DB) INFO: DF16T~0 created
    (IMP) INFO: import of DF16T completed (1448 rows) #20080429002156
    (DB) INFO: DF16T~OBJ created
    (DB) INFO: DF30S created
    (DB) INFO: DF30S~0 created
    (IMP) INFO: import of DF30S completed (12181 rows) #20080429002159
    (DB) INFO: DF30S~SUC created
    (DB) INFO: DF34S created
    (DB) INFO: DF34S~0 created
    (IMP) INFO: import of DF34S completed (0 rows) #20080429002201
    (DB) INFO: DF40D created
    (DB) INFO: DF40D~0 created
    (IMP) INFO: import of DF40D completed (6188 rows) #20080429002207
    (DB) INFO: DF40D~OBJ created
    (DB) INFO: DF40D~SHI created
    (DB) INFO: DF41S created
    (DB) INFO: DF41S~0 created
    (IMP) INFO: import of DF41S completed (140387 rows) #20080429002243
    (DB) INFO: DF41S~ACT created
    (DB) INFO: DF41S~OVW created
    (DB) INFO: DF42S created
    (DB) INFO: DF42S~0 created
    (IMP) INFO: import of DF42S completed (125131 rows) #20080429002312
    (DB) INFO: DF43S created
    (DB) INFO: DF43S~0 created
    (IMP) INFO: import of DF43S completed (0 rows) #20080429002313
    (DB) INFO: DIAPAR created
    (DB) INFO: DIAPAR~0 created
    (IMP) INFO: import of DIAPAR completed (10171 rows) #20080429002314
    (DB) INFO: DM02L created
    (DB) INFO: DM02L~0 created
    (IMP) INFO: import of DM02L completed (5270 rows) #20080429002315
    (DB) INFO: DM02S created
    (DB) INFO: DM02S~0 created
    (IMP) INFO: import of DM02S completed (0 rows) #20080429002316
    (DB) INFO: DM02T created
    (DB) INFO: DM02T~0 created
    (IMP) INFO: import of DM02T completed (42547 rows) #20080429002327
    (DB) INFO: DM03S created
    (DB) INFO: DM03S~0 created
    (IMP) INFO: import of DM03S completed (12167 rows) #20080429002334
    (DB) INFO: DM03S~1 created
    (DB) INFO: DM25L created
    (DB) INFO: DM25L~0 created
    (IMP) INFO: import of DM25L completed (2652 rows) #20080429002336
    (DB) INFO: DM25L~A created
    (DB) INFO: DM26L created
    (DB) INFO: DM26L~0 created
    (IMP) INFO: import of DM26L completed (8520 rows) #20080429002342
    (DB) INFO: DM26L~A created
    (DB) INFO: DM40L created
    (DB) INFO: DM40L~0 created
    (IMP) INFO: import of DM40L completed (5050 rows) #20080429002400
    (DB) INFO: DM40L~A created
    (DB) INFO: DM40T created
    (DB) INFO: DM40T~0 created
    (IMP) INFO: import of DM40T completed (40525 rows) #20080429002417
    (DB) INFO: DM41S created
    (DB) INFO: DM41S~0 created
    (IMP) INFO: import of DM41S completed (20298 rows) #20080429002430
    (DB) INFO: DM41S~A created
    (DB) INFO: DM42S created
    (DB) INFO: DM42S~0 created
    (IMP) INFO: import of DM42S completed (9688 rows) #20080429002449
    (DB) INFO: DM42S~A created
    (DB) INFO: DM42T created
    (DB) INFO: DM42T~0 created
    (IMP) INFO: import of DM42T completed (3250 rows) #20080429002453
    (DB) INFO: DM42T~1 created
    (DB) INFO: DM43T created
    (DB) INFO: DM43T~0 created
    (IMP) INFO: import of DM43T completed (3613 rows) #20080429002455
    (DB) INFO: DM45L created
    (DB) INFO: DM45L~0 created
    (IMP) INFO: import of DM45L completed (616 rows) #20080429002456
    (DB) INFO: DM45T created
    (DB) INFO: DM45T~0 created
    (IMP) INFO: import of DM45T completed (5217 rows) #20080429002459
    (DB) INFO: DM46S created
    (DB) INFO: DM46S~0 created
    (IMP) INFO: import of DM46S completed (1796 rows) #20080429002501
    (DB) INFO: DM46S~A created
    (DB) INFO: DOKCLU created
    (DB) INFO: DOKCLU~0 created
    (IMP) INFO: import of DOKCLU completed (4447360 rows) #20080429013742
    (DB) INFO: DOKHL created
    (DB) INFO: DOKHL~0 created
    (IMP) INFO: import of DOKHL completed (4804536 rows) #20080429020852
    (DB) INFO: DOKIL created
    (DB) INFO: DOKIL~0 created
    (IMP) INFO: import of DOKIL completed (4458432 rows) #20080429022425
    (DB) INFO: DSYST created
    (DB) INFO: DSYST~0 created
    (IMP) INFO: import of DSYST completed (54353 rows) #20080429022444
    (DB) INFO: DYNPSOURCE created
    (DB) INFO: DYNPSOURCE~0 created
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: import of DYNPSOURCE completed (190478 rows) #20080429055103
    (DB) INFO: ENHCOMPCHILDCOMP created
    (DB) INFO: ENHCOMPCHILDCOMP~0 created
    (IMP) INFO: import of ENHCOMPCHILDCOMP completed (14 rows) #20080429055108
    (DB) INFO: ENHCOMPCHILDCOMP~1 created
    (DB) INFO: ENHCOMPCHILDENH created
    (DB) INFO: ENHCOMPCHILDENH~0 created
    (IMP) INFO: import of ENHCOMPCHILDENH completed (6093 rows) #20080429055123
    (DB) INFO: ENHCOMPCHILDENH~1 created
    (DB) INFO: ENHCOMPHEADER created
    (DB) INFO: ENHCOMPHEADER~0 created
    (IMP) INFO: import of ENHCOMPHEADER completed (135 rows) #20080429055130
    (DB) INFO: ENHCONTRACTTOOL created
    (DB) INFO: ENHCONTRACTTOOL~0 created
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: import of ENHCONTRACTTOOL completed (14 rows) #20080429055138
    (DB) INFO: ENHCONTRACTTYP created
    (DB) INFO: ENHCONTRACTTYP~0 created
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: import of ENHCONTRACTTYP completed (37 rows) #20080429055143
    (DB) INFO: ENHDEPENDENT created
    (DB) INFO: ENHDEPENDENT~0 created
    (IMP) INFO: import of ENHDEPENDENT completed (0 rows) #20080429055148
    (DB) INFO: ENHDEPENDENT~001 created
    (DB) INFO: ENHHEADER created
    (DB) INFO: ENHHEADER~0 created
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: import of ENHHEADER completed (6377 rows) #20080429055356
    (DB) INFO: ENHHEADER~001 created
    (DB) INFO: ENHHEADER~002 created
    (DB) INFO: ENHLOADINVAL created
    (DB) INFO: ENHLOADINVAL~0 created
    (IMP) INFO: import of ENHLOADINVAL completed (1013 rows) #20080429055400
    (DB) INFO: ENHLOG created
    (DB) INFO: ENHLOG~0 created
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: import of ENHLOG completed (12535 rows) #20080429055413
    (DB) INFO: ENHLOG~001 created
    (DB) INFO: ENHLOG~002 created
    (DB) INFO: ENHOBJ created
    (DB) INFO: ENHOBJ~0 created
    (IMP) INFO: import of ENHOBJ completed (13763 rows) #20080429055420
    (DB) INFO: ENHOBJ~001 created
    (DB) INFO: ENHOBJ~002 created
    (DB) INFO: ENHOBJ~003 created
    (DB) INFO: ENHOBJ~004 created
    (DB) INFO: ENHOBJCONTRACT created
    (DB) INFO: ENHOBJCONTRACT~0 created
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: import of ENHOBJCONTRACT completed (13 rows) #20080429055430
    (DB) INFO: ENHOBJCONTRACT~001 created
    (DB) INFO: ENHSPOTCOMPCOMP created
    (DB) INFO: ENHSPOTCOMPCOMP~0 created
    (IMP) INFO: import of ENHSPOTCOMPCOMP completed (58 rows) #20080429055432
    (DB) INFO: ENHSPOTCOMPCOMP~1 created
    (DB) INFO: ENHSPOTCOMPHEAD created
    (DB) INFO: ENHSPOTCOMPHEAD~0 created
    (IMP) INFO: import of ENHSPOTCOMPHEAD completed (791 rows) #20080429055435
    (DB) INFO: ENHSPOTCOMPSPOT created
    (DB) INFO: ENHSPOTCOMPSPOT~0 created
    (IMP) INFO: import of ENHSPOTCOMPSPOT completed (3495 rows) #20080429055436
    (DB) INFO: ENHSPOTCOMPSPOT~1 created
    (DB) INFO: ENHSPOTCONTRACT created
    (DB) INFO: ENHSPOTCONTRACT~0 created
    (IMP) INFO: import of ENHSPOTCONTRACT completed (0 rows) #20080429055437
    (DB) INFO: ENHSPOTCONTRACT~1 created
    (DB) INFO: ENHSPOTHEADER created
    (DB) INFO: ENHSPOTHEADER~0 created
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: import of ENHSPOTHEADER completed (4078 rows) #20080429055500
    (DB) INFO: ENHSPOTOBJ created
    (DB) INFO: ENHSPOTOBJ~0 created
    (IMP) INFO: import of ENHSPOTOBJ completed (13111 rows) #20080429055513
    (DB) INFO: ENHSPOTOBJ~001 created
    (DB) INFO: ENHSPOTOBJ~002 created
    (DB) INFO: ENHSPOTTOOLS created
    (DB) INFO: ENHSPOTTOOLS~0 created
    (IMP) INFO: import of ENHSPOTTOOLS completed (2 rows) #20080429055521
    (DB) INFO: ENHSPOTTOOLST created
    (DB) INFO: ENHSPOTTOOLST~0 created
    (IMP) INFO: import of ENHSPOTTOOLST completed (10 rows) #20080429055523
    (DB) INFO: ENHTAB created
    (DB) INFO: ENHTAB~0 created
    (IMP) INFO: import of ENHTAB completed (0 rows) #20080429055531
    (DB) INFO: ENHTAB~001 created
    (DB) INFO: ENHTAB~002 created
    (DB) INFO: ENHTAB~003 created
    (DB) INFO: ENHTOOLS created
    (DB) INFO: ENHTOOLS~0 created
    (IMP) INFO: import of ENHTOOLS completed (6 rows) #20080429055535
    (DB) INFO: ENHTOOLST created
    (DB) INFO: ENHTOOLST~0 created
    (IMP) INFO: import of ENHTOOLST completed (30 rows) #20080429055538
    (DB) INFO: ENH_DY_FCODES created
    (DB) INFO: ENH_DY_FCODES~0 created
    (IMP) INFO: import of ENH_DY_FCODES completed (0 rows) #20080429055542
    (DB) INFO: ENH_DY_GROUP created
    (DB) INFO: ENH_DY_GROUP~0 created
    (IMP) INFO: import of ENH_DY_GROUP completed (0 rows) #20080429055547
    (DB) INFO: ENH_DY_SUBS created
    (DB) INFO: ENH_DY_SUBS~0 created
    (IMP) INFO: import of ENH_DY_SUBS completed (0 rows) #20080429055549
    (DB) INFO: ENLFDIR created
    (DB) INFO: ENLFDIR~0 created
    (IMP) INFO: import of ENLFDIR completed (386514 rows) #20080429055745
    (DB) INFO: ENLFDIR~1 created
    (DB) INFO: EUDB created
    (DB) INFO: EUDB~0 created
    (IMP) INFO: import of EUDB completed (32179 rows) #20080429060351
    (DB) INFO: EUGUITEXT created
    (DB) INFO: EUGUITEXT~0 created
    (IMP) INFO: import of EUGUITEXT completed (2556 rows) #20080429060455
    (DB) INFO: EUOBJ created
    (DB) INFO: EUOBJ~0 created
    (IMP) INFO: import of EUOBJ completed (562 rows) #20080429060556
    (DB) INFO: EUOBJEDIT created
    (DB) INFO: EUOBJEDIT~0 created
    (IMP) INFO: import of EUOBJEDIT completed (391 rows) #20080429061005
    (DB) INFO: EUOBJT created
    (DB) INFO: EUOBJT~0 created
    (IMP) INFO: import of EUOBJT completed (5765 rows) #20080429061357
    (DB) INFO: FUNCT created
    (DB) INFO: FUNCT~0 created
    (IMP) INFO: import of FUNCT completed (5158636 rows) #20080429065528
    (DB) INFO: FUNCT~1 created
    (DB) INFO: FUPARAREF created
    (DB) INFO: FUPARAREF~0 created
    (IMP) INFO: import of FUPARAREF completed (2895483 rows) #20080429071823
    (DB) INFO: FUPARAREF~1 created
    (DB) INFO: FUPARAREF~2 created
    (DB) INFO: IADB2 created
    (DB) INFO: IADB2~0 created
    (IMP) INFO: import of IADB2 completed (20 rows) #20080429073358
    (DB) INFO: IADB6 created
    (DB) INFO: IADB6~0 created
    (IMP) INFO: import of IADB6 completed (20 rows) #20080429073358
    (DB) INFO: IAINF created
    (DB) INFO: IAINF~0 created
    (IMP) INFO: import of IAINF completed (24 rows) #20080429073359
    (DB) INFO: IAMSS created
    (DB) INFO: IAMSS~0 created
    (IMP) INFO: import of IAMSS completed (0 rows) #20080429073359
    (DB) INFO: IAORA created
    (DB) INFO: IAORA~0 created
    (IMP) INFO: import of IAORA completed (28 rows) #20080429073400
    (DB) INFO: IGDB2 created
    (DB) INFO: IGDB2~0 created
    (IMP) INFO: import of IGDB2 completed (10 rows) #20080429073400
    (DB) INFO: IGORA created
    (DB) INFO: IGORA~0 created
    (IMP) INFO: import of IGORA completed (15 rows) #20080429073401
    (DB) INFO: INDTEXT created
    (DB) INFO: INDTEXT~0 created
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: import of INDTEXT completed (1946227 rows) #20080429075332
    (DB) INFO: LDBA created
    (DB) INFO: LDBA~0 created
    (IMP) INFO: import of LDBA completed (40 rows) #20080429075332
    (DB) INFO: LDBB created
    (DB) INFO: LDBB~0 created
    (IMP) INFO: import of LDBB completed (0 rows) #20080429075333
    (DB) INFO: LDBD created
    (DB) INFO: LDBD~0 created
    (IMP) INFO: import of LDBD completed (258 rows) #20080429075333
    (DB) INFO: LDBH created
    (DB) INFO: LDBH~0 created
    (IMP) INFO: import of LDBH completed (49 rows) #20080429075334
    (DB) INFO: LDBN created
    (DB) INFO: LDBN~0 created
    (IMP) INFO: import of LDBN completed (2235 rows) #20080429075334
    (DB) INFO: LDBNT created
    (DB) INFO: LDBNT~0 created
    (IMP) INFO: import of LDBNT completed (50310 rows) #20080429075346
    (DB) INFO: LDBQUAN created
    (DB) INFO: LDBQUAN~0 created
    (IMP) INFO: import of LDBQUAN completed (52 rows) #20080429075347
    (DB) INFO: LDBT created
    (DB) INFO: LDBT~0 created
    (IMP) INFO: import of LDBT completed (5505 rows) #20080429075349
    (DB) INFO: MACID created
    (DB) INFO: MACID~0 created
    (IMP) INFO: import of MACID completed (17 rows) #20080429075350
    (DB) INFO: MACOB created
    (DB) INFO: MACOB~0 created
    (IMP) INFO: import of MACOB completed (215 rows) #20080429075351
    (DB) INFO: MCUSREXITS created
    (DB) INFO: MCUSREXITS~0 created
    (IMP) INFO: import of MCUSREXITS completed (108 rows) #20080429075351
    (DB) INFO: MSSPROCS created
    (DB) INFO: MSSPROCS~0 created
    (IMP) INFO: import of MSSPROCS completed (287 rows) #20080429075352
    (DB) INFO: MSSSOURCE created
    (DB) INFO: MSSSOURCE~0 created
    (IMP) INFO: import of MSSSOURCE completed (45489 rows) #20080429075405
    (DB) INFO: MSSSPVERS created
    (DB) INFO: MSSSPVERS~0 created
    (IMP) INFO: import of MSSSPVERS completed (2 rows) #20080429075406
    (DB) INFO: MSSSTORAGE created
    (DB) INFO: MSSSTORAGE~0 created
    (IMP) INFO: import of MSSSTORAGE completed (1 rows) #20080429075407
    (DB) INFO: NOTRA created
    (DB) INFO: NOTRA~0 created
    (IMP) INFO: import of NOTRA completed (192 rows) #20080429075408
    (DB) INFO: PERMISSION created
    (DB) INFO: PERMISSION~0 created
    (IMP) INFO: import of PERMISSION completed (112356 rows) #20080429075431
    (DB) INFO: PERMISSION~IF created
    (DB) INFO: REPOSRC created
    (DB) INFO: REPOSRC~0 created
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>
    (IMP) INFO: DBSL will be used
    (IMP) INFO: InitFastLoad failed with <3: Can't fastload LOBs>

    Hi,
    You have to re-run the failed R3load-import with -merge_bck option. This is necessary because the SAPSSEXC.TSK.BCK file remained
    check Note 455195 - R3load: Use of TSK files
    regards,
    kaushal

  • Error PLS-201 with DBMS_CRYPTO - 11g (totally newbie error).

    Hi guys.
    I'm trying to compile a package which includes the following instruction in a function:
    return DBMS_CRYPTO.Hash(src => v_hashed, typ => DBMS_CRYPTO.HASH_MD5);
    where "v_hashed" is raw(16) and the function expects a RAW as output. This instruction works ok in 10gr2 but fails in 11g with the following error (I have been granted access to the package, of course):
    PLS-201: identified 'DMBS_CRYPTO' must be declared
    If I replicate the same functionality in an anonymous block, it works ok. I'm pretty sure there is a silly mistake I'm making but I really can't see it. Hope somebody can help me.
    TIA,
    Mariano

    You probably have permissions on dbms_crypto through a role, and not granted directly to your user. Permissions granted through a role do not work in stored procedures, but do work in anonymous blocks.
    As a quick test of this, in your sqlplus session type
    set role none;
    then try your anonymous blxok again. It will fail.
    John

  • Help! error code 8 with Adobe premier cs4 and OpenGl

    hey there,
    i've been trying to work with adobe premier cs4 on my new Thinkpad w520 (i7 2720, 8GB, Nvidia quadro 1000m)
    i keep getting this error messege regarding the OpenGl (error code #8) that lost connection with the display driver, after that its automaticly shutting down premier.
    nvidia representive suggested me to download an old driver (268.71) instead of the latest one, still wouldn't solve the problam.
    can anyone help me with that issue!?
    jonny

    hey jonygeron,
    if you uninstall the current graphic driver , let windows install its generic driver .. can you get Premier CS4 to work ?
    WW Social Media
    Important Note: If you need help, post your question in the forum, and include your system type, model number and OS. Do not post your serial number.
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"!
    Follow @LenovoForums on Twitter!
    Have you checked out the Community Knowledgebase yet?!
    How to send a private message? --> Check out this article.

  • Help regarding Error pls-00920

    when executing a procedure i got following error
    18/1 PLS-00920: parameter plsql_native_library_dir is not set
    what is this means ?
    what can i do to solve this error

    Hi,
    PLS-00920: parameter plsql_native_library_dir is not set
    Cause: A PL/SQL program is being compiled natively, but the compiler parameter plsql_native_library_dir, which denotes the directory to store the native shared objects (DLL), is not set.
    Action: The DBA should set this parameter. cheers
    kumar

  • Got error pls-00306  wrongnumber or type of arguments in call to put_line .

    1 create or replace procedure dispvalues(projsales_in number,year_in number,totsales number,lcost number) is
    2 begin
    3 dbms_output.put_line('total sales:'||to_char(nvl('totsales',year_in)/projsales_in*100),'999.99');
    4 dbms_output.put_line('employee labor:'||to_char(nvl('lcost',year_in)/projsales_in*100),'999.99');
    5 end;
    This is the required code . .

    Hi,
    Format your code so that you can see what arguments belong to what functions.
    For example, the first call to put_line (as you wrote it, only formatted) is:
    ... dbms_output.put_line ( 'total sales:' || to_char ( nvl ( 'totsales'
                                                                  , year_in
                                           ) / projsales_in * 100
                       , '999.99'
                    );Here, it's easy to see that you're calling put_line with 2 arguments, which is the "wrong number". Perhaps '999.99' should be an argument of TO_CHAR, not put_line:
    ... dbms_output.put_line ( 'total sales:' || to_char ( nvl ( 'totsales'
                                                                  , year_in
                                           ) / projsales_in * 100'
                                            , '999.99'
                    );

  • PLS-00306 calling a procedure with default parameters

    Hi,
    I have the following procedure :
    PROCEDURE P_SUPPRESSION_ENRG (
    DIR in VARCHAR2,
    Tab_Diff_traitee in VARCHAR2,
    TabSup in VARCHAR2,
    ColCode in VARCHAR2,
    Code in VARCHAR2,
    Trig in VARCHAR2 default '',
    Etat in VARCHAR2 default '',
    TypMod in VARCHAR2 default '',
    IndRev in VARCHAR2 default '',
    Crd out NUMBER
    ) is
    END P_SUPPRESSION_ENRG;
    When I run this procedure without the parameters Trig,Etat,TypMod and IndRev, I receive the error PLS-00306 :
    INFOLIG.pck_diff.P_SUPPRESSION_ENRG(Directory,'DIFF_PYLONE_TYPE','DIFF_PYLONE_TYPE','DFP_PYL_CODE_PYLONE',rec.OIP_PYL_CODE_PYLONE,Icrd);
    PLS-00306
    wrong number or types of arguments in call to P_SUPPRESSION_ENRG.
    What have I to do to run this procedure without the parameters Trig,Etat,TypMod and IndRev ?
    Regards,
    Rachel

    hi, i think you are only passing 6 parameters when you called out the procedure p_supperion_enrg. your procedure requires a 10 parameters.
    if you do not want to include Trig,Etat,TypMod and IndRev you can simply put a null value.
      INFOLIG.pck_diff.P_SUPPRESSION_ENRG(Directory,
                                          'DIFF_PYLONE_TYPE',
                                          'DIFF_PYLONE_TYPE',
                                          'DFP_PYL_CODE_PYLONE',
                                          rec.OIP_PYL_CODE_PYLONE,
                                          Null,
                                          Null,
                                          Null,
                                          Null,
                                          Icrd); also you don't need to expplicitly defualt a parameter to null value. it is understood that parameters are initially default to null values.
      PROCEDURE P_SUPPRESSION_ENRG ( DIR              in VARCHAR2,
                                     Tab_Diff_traitee in VARCHAR2,
                                     TabSup           in VARCHAR2,
                                     ColCode          in VARCHAR2,
                                     Code             in VARCHAR2,
                                     Trig             in VARCHAR2,
                                     Etat             in VARCHAR2,
                                     TypMod           in VARCHAR2,
                                     IndRev           in VARCHAR2,
                                     Crd             out NUMBER ) IS
      END P_SUPPRESSION_ENRG;

  • PLS-00306: wrong number or types of arguments in call to 'TO_CHAR '

    Hi guys, I am learning Pl/SQL. Trying to write a simple function which calculates some dates. It takes contract_date and determines the date of the following Sunday.
    My code current has the compiler error: PLS-00306: wrong number or types of arguments in call to 'TO_CHAR 'which I believe has to do with the to_char(trunc(contract_date,'D')) := contract_weekday;
    I do not understand what is wrong with my statement there..
    Here is my code: Thanks for any help!
    show errors
    create or replace FUNCTION
    contract_dates(contract_date IN DATE)
    RETURN DATE
    IS
    starting_sunday DATE;
    --ending_saturday DATE := starting_sunday + 6;
    contract_weekday varchar(32);
    days_add NUMBER;
    BEGIN
    to_char(trunc(contract_date,'D')) := contract_weekday;
    case contract_weekday
    when 1 then days_add := 6;
    when 2 then days_add := 5;
    when 3 then days_add := 4;
    when 4 then days_add := 3;
    when 5 then days_add := 2;
    when 6 then days_add := 1;
    else days_add := 7;
    end case;
    starting_sunday := contract_date + days_add;
    RETURN to_date(starting_sunday);
    END;

    It's the other way around:
    CREATE OR REPLACE FUNCTION
    contract_dates(contract_date IN DATE)
    RETURN DATE
    IS
    starting_sunday DATE;
    --ending_saturday DATE := starting_sunday + 6;
    contract_weekday varchar(1);
    days_add NUMBER;
    BEGIN
    contract_weekday := to_char(trunc(contract_date,'D'));
    case contract_weekday
    when 1 then days_add := 6;
    when 2 then days_add := 5;
    when 3 then days_add := 4;
    when 4 then days_add := 3;
    when 5 then days_add := 2;
    when 6 then days_add := 1;
    else days_add := 7;
    end case;
    starting_sunday := contract_date + days_add;
    RETURN to_date(starting_sunday);
    END;

  • PLS-00306: wrong number or types of arguments in call to 'proc1'

    Hi All,
    I pass OUT paramter values to .NET as in below proc.
    PROCEDURE PROC1
         in_report_parameter_id   IN      report_tasks.report_task_id%TYPE,
         result_site_name         OUT     SYS_REFCURSOR,
         result                   OUT     SYS_REFCURSOR
    AS
      my_site_id sites.site_id%TYPE;      
      my_lane_numbers_string VARCHAR(100);
      my_site_name sites.short_name%TYPE;
    BEGIN
      my_site_id := get_site_id(in_report_parameter_id);
      SELECT short_name
         INTO my_site_name
         FROM sites
         WHERE site_id = my_site_id;
            OPEN result_site_name FOR
          SELECT my_site_name site_name
            FROM sys.dual;
               OPEN result FOR      
              SELECT site_direction_id,
                      site_lane_id
                FROM site_lanes
                JOIN report_parameters
                   ON site_lane_id = CAST(report_parameters.report_parameter_value AS NUMBER)
               WHERE site_id = my_site_id
                 AND report_parameters.report_parameter_id = in_report_parameter_id
                 AND report_parameters.report_parameter_group = 'LANE'
                 AND report_parameters.report_parameter_name = 'LANE'
           ORDER BY site_direction_id ASC, site_lane_id ASC;
              --   FROM SYS.DUAL;  
    END PROC1;During runtime it throws me the following error
    PLS-00306: wrong number or types of arguments in call to 'proc1'how could i solve this ?
    Thanks in advance.
    Regards,
    Indhu

    Hi, Indhu,
    user10641405 wrote:
    PROCEDURE PROC1
         in_report_parameter_id   IN      report_tasks.report_task_id%TYPE,
         result_site_name         OUT     SYS_REFCURSOR,
         result                   OUT     SYS_REFCURSOR
    AS ...During runtime it throws me the following error
    PLS-00306: wrong number or types of arguments in call to 'proc1'how could i solve this ?Call proc1 with the right number and types of arguments.
    The first argument is an IN argument, so it can be any kind of expression, including a literal or a function call.
    The second and third arguments are OUT arguments, so they must be variables.
    If you need more help, post the code that calls proc1 (and causes the error).
    Make sure you include the part of the code where the arguments are declared.
    I'm innocent of .net, so I probably won't be able to help you with that part, but it will be important for anyone who does know .net.
    By the way, is there a reason why you are using a SYS_REFCURSOR for result_site_name, when it will only return one row? A lot of folks would make the datatype of that argument sites.short_name%TYPE.

Maybe you are looking for