How to run a control file in Oracle

4.7k Views Asked by At

I have a control file to load data from flat file to Table. what's next? How do I run this file to load data? I have Oracle SQL Developer and SQL*PLUS

1

There are 1 best solutions below

3
Popeye On

You need to use sqlldr command to execute sql loader to load data.

sqlldr username@server/password control=loader.ctl

For more details, see this.

Cheers!!