Invoking SQL Loader with a DSN
Posted
by Zack
on Stack Overflow
See other posts from Stack Overflow
or by Zack
Published on 2010-03-14T12:35:38Z
Indexed on
2010/03/14
12:45 UTC
Read the original article
Hit count: 346
I'm trying to load some data to an Oracle database using SQL Loader. Is it possible to invoke it with specifying the server to load the data into using a DSN instead of a TNS?
Right now my command line looks like this: sqlldr uesr/password@tns_id...
, I'd like to replace tns_id
with a DSN that points to tns_id
. Can SQL Loader figure out the TNS from the DSN by itself?
© Stack Overflow or respective owner