Top "Sql-loader" questions

SQL*Loader is a high-speed data loading utility that loads data from external files into tables in an Oracle database.

Can variables be passed to a SQL*Loader control file via sqlldr command?

Below is my Control file example : OPTIONS (skip=1,errors=1000,direct=true,rows=10000) load data append into table TABLE_NAME fields …

oracle sql-loader controlfile
sqlldr return codes - ex_warn

I want to know if my file is loaded complete in the database. if you check the return codes here …

oracle sql-loader return-code
Double quotes in the in the data loaded through SQL loader

I have a problem with the data getting loaded to Oracle tables through SQL Loader. The problem is that double …

sql-loader
How can I truncate data to fit into a field using SQL*Loader? (ORA-12899)

Using Oracle SQL*Loader, I am trying to load a column that was a variable length string (lob) in another …

substring truncate sql-loader ora-12899
Field in data file exceeds maximum length - error

when i am trying to insert data in to a column of size varchar2(4000) in table i am getting error …

oracle sql-loader
SQL*Loader-704 and ORA-12154

sqlldr "xxxx/xxxx@YYYYYXXXX" control=/home/local/INTERNAL/xxxxx/Presc_SQLLDR_File/Presc_SQLLDR.ctl log=/home/local/INTERNAL/xxxxx/…

sql-loader oracle12c tnsping
How to use to_number and nullif in sql-loader?

I've had a similar problem with dates (combination of to_date and nullif) here : How to use decode in sql-loader? …

oracle sql-loader
Accessing data filename from within SQL*Loader control file

How do I access the input data file name from within SQL*Loader control file so that I can insert …

sql oracle sql-loader
Sql loader - second enclosure string not present

I am loading a .csv file data into oracle table through sql loader. One of the fields has a new …

oracle sql-loader
External Tables vs SQLLoader

So, I often have to load data into holding tables to run some data validation checks and then return the …

oracle sql-loader external-tables