Thanks tomas, that's what I've done. I still wanted to automate the creation of these control files though, so this is what I did. Wrote a generic control file called control.ctl:

LOAD DATA INFILE <table>.txt INTO TABLE <table> ( person_id POSITION(1:9) CHAR(9) surname POSITION(10:34) CHAR(25) given_names POSITION(35-59) CHAR(25) )

Then wrote the following script to write a control file for each data file in the directory:

#!/usr/bin/perl #configuration variables $lpath="/u04/tmp/log"; $cpath="/u04/tmp/ctl/"; $cfile="control.ctl"; $dirname="/u04/tmp/txt/"; # load the control file data open(SOURCE, "< $cpath$cfile") or die "Couldn't open $cpath for reading: $!\n"; @control = <SOURCE>; foreach $line (@control) { $ctl .= $line; } #process all files in the directory opendir(DIR, $dirname) or die "can't opendir $dirname: $!"; while (defined($file = readdir(DIR))) { if ($file =~ /.txt/) { ($table = $file) =~ s/.txt//; #print "$file -> $table \n"; #write the control file open(COUT, "> $cpath$table.ctl") or die "Couldn't open $cpath$file.ctl for writing: $!"; ($tmp = $ctl) =~ s/<table>/$table/g; print COUT $tmp; close COUT; #call SQL*Loader $cmd = "sqlldr USERID=user/id\@service ". "control=$cpath$table.ctl " . "log=$lpath$table.log " . "bad=$lpath$table.bad direct=true"; $status = system($cmd); } } closedir(DIR);

I'm sure this code could be cleaned up a bit, but it does the job.

*~-}hotyopa{-~*


In reply to Batch loading data into Oracle - my solution by hotyopa
in thread Batch loading data into Oracle - Perl to the rescue! by hotyopa

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.