Questions tagged [sql-loader]
SQL*Loader is a bulk loader for Oracle
27 questions
-1
votes
1
answer
169
views
Expecting "," or ")", found "nvarchar2"
Here is my SQL*Loader: Release 11.2.0.2.0 - Production on Fri Nov 10 00:39:56 2023
OS=UBUNTU 20
I am trying to load data from csv file with the help of following code:
OPTIONS (SKIP=1)
LOAD DATA
...
0
votes
0
answers
98
views
Problem to start sqlldr with parfile=parfile.par
If have installed Oracle Client 21.11 under Ubuntu. Sqlplus is working fine so far. Only when I try to use sqlldr in combination with parfile it is not working.
when I call
sqlldr user.../pw...@...
0
votes
2
answers
2k
views
How can I use pg_dump to export a single table to CSV that can then be imported by Oracle SQL Loader?
Thanks in advance for any help on this.
Problem Summary:
I'm looking for the most efficient way possible to export a single table from Postgres/Greenplum for a large number of records (100M+) so that ...
0
votes
2
answers
119
views
Efficient approach to Query DB with data in text file [closed]
I've got an oracle DB set up and want to Query it after I receive data in a text file. Number of product-names present in text file are around a million.
After Searching a lot I've found 2 ways of ...
0
votes
1
answer
216
views
SQL*Loader and DC firewall timeout
We are loading a huge dataset using SQLLDR and there are index creation that lasts for a couple hours or even more. Firewall drops this connection as there is no data transfer during index creation ...
0
votes
1
answer
2k
views
When is the best time to use RMAN vs when to use Data Pump? [duplicate]
And also... if I backup a database with RMAN, is it not possible to use impdp to restore small parts of that database?
0
votes
1
answer
792
views
sqlldr syntax error [closed]
oracle@tdc2mdb07> cat rsm.ctl
**************************************************
LOAD DATA
infile '/tmp/20181012_bkp.txt'
REPLACE INTO TABLE ASSET_ODS.ROADSIDE_MESSAGE
FIELDS TERMINATED BY '|'
...
1
vote
0
answers
2k
views
SQL Loader intermittently throws "ORA-12516: TNS:listener could not find available handler with matching protocol stack"
I am running a weekly batch job which is loading data from txt/csv files to database using SQL Loader. But SQL Loader intermittently throws below error:
SQL*Loader-704: Internal error: ulconnect: ...
0
votes
1
answer
1k
views
Loading Oracle ctl export file into postgresql
I have a number of tables exported from an oracle database in the form of Ctl files with that data included within the file.
Im looking for a way to import these into postgresql but the the ...
1
vote
0
answers
428
views
Modification of the sql loader control file
I am working on a script which uses Oracle SQL *Loader to load data into a table. However, anywhere I search about the control file of an sql loader I am seeing only statements like:
"load data into ...
2
votes
1
answer
1k
views
SQL*Loader-926, ORA-04031 unable to allocate x bytes of shared memory
A customer received this error while importing serveral files. The import routine (VB.NET) is using SQL*Loader (Release 11.2.0.3.0) via Process on each table separately (64 in total) and is called ...
3
votes
2
answers
10k
views
NLS_NUMERIC_CHARACTERS in SQL loader control file
I am using a Control File to import data from a CSV file into a table, using sqlldr to import the data, where a large number of fields are numeric values with integer and decimal part separated by ...
2
votes
0
answers
516
views
oracle bulk loader processing columns with newline characters
I'm trying to load a file with description columns which may contain newline characters. The file is Unix format utf16, tab separated and description columns are enclosed in ". The problem is bulk ...
1
vote
1
answer
3k
views
Load file based on line number in sqlldr
I am trying to load header and detail records from a file. The only way I know the difference between the header and the detail records is the line number. The first line is always the header and the ...
1
vote
1
answer
2k
views
Call trigger during SQL Loader insert
I'm trying to insert data from a file into an Oracle table using SQL loader. The primary key is populated by a sequence where the nextVal is called from an insert trigger.
When I try using sqlldr, it ...