Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

sqlldr from pl/sql?

Status
Not open for further replies.

Scunningham99

Programmer
Sep 20, 2001
815
GB
Morning

Is it possible to kick off sqlldr from pl/sql?

Any help would be greatlt appreciated!!



Sy UK
 
One way I think is to write a Java stored procedure that calls sqlldr (something like
Code:
Runtime.getRuntime.exec(cmd);
. You can than call the java stored procedure in pl/sql like another pl/sql function/procedure.

Hope it helps.

Philippe
 

Create table defined as EXTERNAL on the sql loader file!




----------------------------------------------------------------------------
The person who says it can't be done should not interrupt the person doing it. -- Chinese proverb
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top