I want to load data into an Oralce DB. I connect to the DB from a linux machine. I tried sqlldr but it gave me command not found. What shall I use then.
sqlldr always comes with oracle server, so if oracle server is installed on your linux machine you can find sqlldr in oracle bin directory, for example
/opt/oracle/product/9.2.9/bin.
if you have only an oracle client you can use sqlplus and sql commands like insert, or to use for example perl scripts to load data.
I want to load data into an Oralce DB. I connect to the DB from a linux machine. I tried sqlldr but it gave me command not found. What shall I use then.
Comment