DBAsupport.com Forums - Powered by vBulletin
Results 1 to 2 of 2

Thread: Sequence and Sqlldr

  1. #1
    Join Date
    Jan 2001
    Posts
    642
    Hi,

    I have a requirement, where in a sequence number has to be attached to the record to be loaded when using sqlldr.
    This is because this sequence number acts as a primary key value and later makes multiple entries in different tables.

    Badrinath



  2. #2
    Join Date
    Jan 2001
    Posts
    26

    Cool

    Try the following code :

    ...............
    INTO TABLE my_table
    (
    column_name "sequence_name.NEXTVAL",
    ......
    ...
    )

    I have used it and it works.

    Happy coding.


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Click Here to Expand Forum to Full Width