How to import loader format data using SQLDeveloper?

How can I import data in "loader" format using SQL Developer?

SQLDeveloper can export data in the "loader" format, so I would like to re-import it.

Note. I cannot log in to the server running Oracle DB and I do not have sysdba privileges.

+4
source share
2 answers

Install OracleClient_11gR2_W64.zip Package

Oracle home, for example. C: \ oracle \ product \ 11.2.0 \ client_1

  • Oracle Database Utilities
  • SQL * Plus
  • Oracle Call Interface (OCI)
  • Oracle Net (don't know if necessary)

C:\oracle\product\11.2.0\client_1\network\admin\tnsnames.ora, , . ACME.

sqlldr  scott/tiger@ACME  control=BATCH_REPORTS_DATA_TABLE.ctl log=BATCH_REPORTS_DATA_TABLE.ctl.log

: 64- Oracle 11gR2 Windows 7

Oracle 11gR2

+1

: deinstall.bat , , . Oracle_win64_11gR2_deinstall_11.2.0.1.0.

c:\tmp\Oracle_win64_11gR2_deinstall_11.2.0.1.0\deinstall>  deinstall.bat -home C:\oracle\product\11.2.0\client_1
-1

Source: https://habr.com/ru/post/1529966/


All Articles