Is it possible for Oracle sqlldr to accept a TNS entry as an instance qualifier in Oracle 10 and 11?

前端 未结 7 2008

Is it possible to use a fully qualified TNS entry using sqlldr bundled with Oracle 10/11?

For example, in SQLPlus:

    sqlplus user/password@(description         


        
7条回答
  •  面向向阳花
    2021-02-08 14:03

    Single quoting the whole not-so-ezconnect worked for me in a DOS batch script and on the command line:

    sqlldr 'user/password@(description=(address=(host=localhost)(protocol=tcp)(port=1521))(connect_data=(sid=orcl)))' control='control.ctl' data='data.txt'
    

提交回复
热议问题