I had high hopes, but it doesn't seem to resolve the issue. I tried a few different types, but when I'm mirroring what the other tool (Alation) is telling me these things are I tried...

# pepare and execute 'prepack_candidates.sql' print "Preparing 'prepack_candidates.sql'...\n"; my $sth1 = $dbh->prepare($candidates_sql) or die; $sth1->bind_col(1, undef, ORA_VARCHAR2(50)); $sth1->bind_col(2, undef, ORA_NUMBER(10)); $sth1->bind_col(3, undef, ORA_NUMBER(10)); print "Executing 'prepack_candidates.sql'...\n"; $sth1->execute() or die;

My DBAs are submitting a ticket with Oracle, but they warned me not to expect too much. :-/

Well, it's looking more and more like I'm just going to tuck my tail in between my legs and go back to the good ol' dumping gigantic text and/or xlsx files to read in via Perl. Pending not finding an actual root cause and solution, maybe eventually I'll get extra creative in the hack style workaround and figure out how to send one of the other tools the query that I have Perl modify as needed based on results of subsequent queries.

Just another Perl hooker - My clients appreciate that I keep my code clean but my comments dirty.

In reply to Re^2: DBI, DBD::Oracle, Inconsistent Fetch Failures by perldigious
in thread RESOLVED - DBI, DBD::Oracle, Inconsistent Fetch Failures by perldigious

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.