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

Thread: SQL Loader

  1. #1
    Join Date
    Aug 2000
    Posts
    53
    Hi
    how to load data in to table which is tab delimited through sql loader.

    Thanks
    ABC

  2. #2
    Join Date
    Mar 2001
    Location
    Reading, U.K
    Posts
    598
    hi do this:

    1) create table test_load_tab(account_no varchar2(100), COUNTRYCODE varchar2(100));

    2)
    LOAD DATA
    INFILE 'c:\CTL\test_dat.DAT'
    BADFILE 'c:\CTL\test_dat_bad.BAD'
    DISCARDFILE 'c:\CTL\test_dat_dis.DIS'
    append
    INTO TABLE test_load_tab
    FIELDS TERMINATED BY "CHR(9)" TRAILING NULLCOLS
    (account_no,
    COUNTRYCODE
    )

    Cheers!
    Cheers!
    OraKid.

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