Today I wrote a preparation script for the oracle sqlloader. Some of the records I needed to load were expected to be already in the table. The script should take a file and generate delete statements for each records primary key. I thought Perls inplace edit feature would be a quick way to generate the list and I came up with the following solution.
cp insert.data delete.sql perl -F';' -ani -e 'print "delete from atable where afield = $F[0]\n"; + END {print "quit\n"}' delete.sql sqlplus ... @delete.sql sqlldr loadme.ctl
Everything seemed to work except the "quit" line I added to quit sqlplus. It was printed to STDOUT instead delete.sql
Why is it not added as the last line of delete.sql? I fixed it with echo quit >> delete.sql
The second question I have is a general one and OT. Is this a reasonable way to update an Oracle 8 Database table?

In reply to inplace edit and END block by codeacrobat

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.