Customer Portal

problem in control script for sqlldr

Comments 2

  • Avatar
    mhaupt
    0
    Comment actions Permalink
    Hello,
    you should defined type of metadata (fixed, delimited) in the control script.
    Try use this control script:

    LOAD DATA
    INFILE *
    INTO TABLE DEP
    APPEND
    (
    DEPNO TERMINATED BY ',',
    STAFF TERMINATED BY ',',
    SALARY TERMINATED BY ','
    )

    When this script won't be success, send me a graph and execution log.

    Tip: when you create a Clover metadata in your graph and connect them to input port of OracleDataWriter then OracleDataWriter can generate default script for the metadata (in dialog where control script is defined)

    New simple example for OracleDataWriter:
    http://wiki.cloveretl.org/doku.php?id=c ... ata_writer

    More info about sqllder:
    http://download.oracle.com/docs/cd/B137 ... tm#i436326

    Info about sqlldr control script:
    http://download.oracle.com/docs/cd/B137 ... m#i1006645
  • Avatar
    priyadarshini
    0
    Comment actions Permalink
    Thanks a ton for help.

Please sign in to leave a comment.