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

前端 未结 7 2009

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 13:50

    Have you tried the ezconnect format to connect to a remote db using sqlldr ?

    e.g:

    sqlldr user/password@//localhost:1521/orcl bad='bad_file.txt' control='control.ctl' data='data.txt' log='log.txt' direct='true'   
    

    see: http://www.orafaq.com/wiki/EZCONNECT

提交回复
热议问题