How to import "loader" format data using SQLDeveloper?
Asked Answered
I

1

7

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

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

Note: I'm not able to login to the server on which the Oracle DB is running, and I don't have sysdba privileges.

Impetuosity answered 4/3, 2014 at 10:1 Comment(2)
The OracleClient_11gR2_W64.zip package locally installs binaries like sqlplus and sqlldr. I'll try to convince them to connect to the remote DB...Impetuosity
Agree to anyone who thinks this is a noob question. But took me more than an hour to figure out how to do it.Impetuosity
I
2

Install OracleClient_11gR2_W64.zip package

Oracle home e.g. C:\oracle\product\11.2.0\client_1

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

Edit the C:\oracle\product\11.2.0\client_1\network\admin\tnsnames.ora, add a configuration for your remote DB, e.g. named ACME.

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

Also read this: How to install Oracle 11gR2 64-bit client on Windows 7

Download Oracle client 11gR2

Impetuosity answered 10/3, 2014 at 9:24 Comment(3)
Well, this answer is not very satisfying, because the question explicitly asked about SQLDeveloper.Trefler
Agree with @Tom. I don't have the sqlldr command installed on my dev workstation, so there's no way it'll be on my customer's computer should I need it.Chandler
I want to import .ldr files. It's true that this way is not with SQLDeveloper, but it was useful for me and worked perfectly. So thanks.Ubiquitous

© 2022 - 2024 — McMap. All rights reserved.