Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

Thank you so much for your input! That worked. I was missing the environment variables. Below is the code that worked.

#!/usr/local/bin/perl use strict; use warnings; use diagnostics; use Oracle::SQLLoader qw/$CHAR $INT $DECIMAL $DATE/; # Oracle Path $ENV{'ORACLE_HOME'} = "C:/oracle/ora92"; $ENV{'ORACLE_USER'} = "xxxx"; $ENV{'ORACLE_PASS'} = "xxxx"; $ENV{'ORACLE_SID'} = "xxxxx"; my $user = $ENV{'ORACLE_USER'}; my $pass = $ENV{'ORACLE_PASS'}; my $sid = $ENV{'ORACLE_SID'}; ### load a simple comma-delimited file to a single table my $ldr = new Oracle::SQLLoader( infile => 'C:\Sales_Report_Thru_12_March_2009.csv', terminated_by => ',', username => $user, password => $pass, sid => $sid ); $ldr->addTable(table_name => 'fs_bbbs_collections', when_clauses => "WHEN (01) <> 'Location_ID' and (01) <> 'Type_Description' and (01) <> 'Type_ID' and (01) <> 'DetailType' and (01) <> 'ItemCount' and (01) <> 'Amount'"); $ldr->addColumn(column_name => 'Location_ID'); $ldr->addColumn(column_name => 'Type_Description'); $ldr->addColumn(column_name => 'Type_ID'); $ldr->addColumn(column_name => 'DetailType'); $ldr->addColumn(column_name => 'ItemCount'); $ldr->addColumn(column_name => 'Amount'); $ldr->executeLoader(); # stats my $skipped = $ldr->getNumberSkipped(); my $read = $ldr->getNumberRead(); my $rejects = $ldr->getNumberRejected(); my $discards = $ldr->getNumberDiscarded(); my $loads = $ldr->getNumberLoaded(); my $beginTS = $ldr->getLoadBegin(); my $endTS = $ldr->getLoadEnd(); my $runtimeSecs = $ldr->getElapsedSeconds(); my $secsOnCpu = $ldr->getCpuSeconds();

In reply to Re^2: Oracle::SQLLoader Error by cocl04
in thread Oracle::SQLLoader Error by cocl04

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



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others having an uproarious good time at the Monastery: (7)
As of 2024-04-19 10:52 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found