Tagged Questions
The sqlldr tag has no wiki summary.
3
votes
1answer
118 views
Oracle 11gR2 loading multiple files: sqlldr or external tables?
I have 471 files totaling about 100GB. The files are "\t" separate, with transaction data in the following format:
char(10) not null,
char(8) not null,
char(1) not null,
char(4) not null,
number not ...
3
votes
2answers
481 views
Can variables be passed to a SQL*Loader control file?
Suppose you have a table:
CREATE TABLE Customer
(
batch_id NUMBER,
customer_name VARCHAR2(20),
customer_address VARCHAR2(100)
)
And suppose you have a control file to populate this ...
3
votes
1answer
2k views
Oracle sqlldr timestamp format headache
I'm struggling to get sqlldr to import a csv data file into my table, specifically with the field that is a timestamp.
The data in my csv file is in this format:
16-NOV-09 01.57.48.001000 PM
I've ...
2
votes
1answer
50 views
Stopping sqlldr
I have a process that load data using sqlldr.
But sometimes due to other factors in the system it does not stop in a reasonable amount of time. Is there a way to kill sqlldr safely. Using kill -9.
2
votes
1answer
29 views
Oracle bulk loading of user defined types
I am trying to load a large amount of data into my Oracle database, and until now i have been using normal insert statements, but over time the number of rows to insert is increased to over 15mil and ...
2
votes
2answers
130 views
PHP synchronization
I'm unsure of the best solution for this but this is what I've done.
I'm using PHP to look into a directory that contains zip files.
These zip files contain text files that are to be loaded into an ...
2
votes
1answer
5k views
Oracle sqlldr TRAILING NULLCOLS required, but why?
I have an abstruse sqlldr problem that's bothering me. My control file looks something like this:
load data
infile 'txgen.dat'
into table TRANSACTION_NEW
fields terminated by "," optionally enclosed ...
2
votes
8answers
21k views
Disable and later enable all table indexes in Oracle
How would I disable and later enable all indexes in a given schema/database in Oracle?
Note: This is to make sqlldr run faster.
1
vote
0answers
32 views
Configure Oracle Sqlldr on Windows 7
I'm having a hard time configuring Sqlldr with Windows 7.
The Oracle client was previously installed by our support team.
There were no registry settings, but Sqlplus, Toad, and Plsql Developer ...
1
vote
0answers
92 views
ORacle SQLLDR Discard rows using WHEN clause not working
I am trying to load a text file, only those rows where 3rd column 'c_nbr' Doesn't END with 'ABCD'. Since WHEN clause is really primitive I could not use, trim/substring with it.
My second choice was ...
1
vote
2answers
67 views
How can I load data conditionally using sqlldr in oracle
I have a txt file as follows. 1st machine_no,2nd emp_no, 3rd shift_type (1 for entry,3 for exit), 4th work_date, 4th is time.
001,0000000021,01,2011/06/21,06:50,
...
1
vote
2answers
99 views
using sqlldr in oracle to import data
I have a txt file as follows. 1st machine_no,2nd emp_no, 3rd shift_type (1 for entry,3 for exit, can also be 4 for entry(multiple entry), 5 for exit(multiple exit), 5th work_date, 6th is time. ...
1
vote
1answer
120 views
Sqlldr error in c shell script
I am doing this in my c shell script.. my result is set to 2 rather than 0
sqlldr $ORA_UID/$ORA_PSWD,control=$CTL/${controlfile}.CTL,log=${sqllog},bad=${badlog},DATA=${filename},discard
=${dsclog}
...
1
vote
1answer
180 views
Need help in a batch script: use 1 or 2 arrays OR parse a file with a tuple name number
I want to run a sqlldr command customized with some parameters, more precisely a name and a associated number. For now I only have an iteration through names but I want to associate each of it with a ...
1
vote
2answers
506 views
SQLLDR Error: Object does not exist while trying to insert data to a database
I am trying to upload data to a table using sql ldr-
sqlldr userid=aa2012/uaxiqdz@ADB control=simple.ctl
simple.ctl:-
LOAD DATA
INFILE '../data/simple.csv'
BADFILE '../data/simple.bad'
...
1
vote
2answers
291 views
loading data to a table containing clob datatype, from a flat file
I am trying to populate a table with the values taken from a flat file using SQLLDR.The problem is that one of the fields in the table is of CLOB datatype(lets say the field name is COMMENTS). In the ...
1
vote
2answers
185 views
SQLLoader with a password that contains @-signs
In windows xp, I start sqlloader.exe to load data onto Oracle. This works great, until my password contains an @-sign, that is also used by sqlloader parameters to determine the database to connect ...
1
vote
1answer
122 views
how to increase the limit of exceptions in oracle SQLLDR
how to increase the limit of exceptions in oracle ?
i have a excel sheet in which their are about 900 records to be appended .so i converted the excel to dat file and wrote a batch file that read ...
1
vote
1answer
435 views
Loading multiple concatenated CSV files into Qracle with SQLLDR
I have a dump of several Postgresql Tables in a selfcontained CSV file which I want to import into an Oracle Database with a matching schema. I found several posts on how to distribute data from one ...
1
vote
1answer
475 views
Invoking SQL Loader with a DSN
I'm trying to load some data to an Oracle database using SQL Loader. Is it possible to invoke it with specifying the server to load the data into using a DSN instead of a TNS?
Right now my command ...
1
vote
1answer
237 views
sqlldr escape reserved name using NULLIF
I have a table with a field called [SEQUENCE] and another called [REFERENCE]
I can define the field in SQLLDR as
SEQUENCE NULLIF ( SEQUENCE=" ")
It complains that SEQUENCE is A SQLLDR reserved ...
1
vote
1answer
488 views
Oracle Date subtraction with SQLLDR
I am trying to import NetBackup statistics into Oracle. One field I really want is ACTIVE START, but it isn't available from bpdbjobs -report. What is available is ACTIVEELAPSED, so I want to subtract ...
1
vote
1answer
638 views
Why are my foreign keys disabled after running sqlldr?
During our build process, we run sqlldr to populate our database with some sample data. On every table that sqlldr touches, the foreign keys are disabled after sqlldr runs.
According to this Ask Tom ...
1
vote
2answers
5k views
How to really skip the processing of a column?
In order to load data (from a CSV file) into an Oracle database, I use SQL*Loader.
In the table that receives these data, there is a varchar2(500) column, called COMMENTS.
For some reasons, I want to ...
1
vote
3answers
2k views
Direct Path Load of TimeStamp Data With SQL*LDR
The SQL-LDR documentation states that you need to do a convetional Path Load:
When you want to apply SQL functions
to data fields. SQL functions are not
available during a direct path load
I ...
0
votes
0answers
44 views
how to tell sqlldr to trim trailing and leading whitespace
I'm using sqlldr to load data in which some of the fields have trailing and leading whitespaces. Is there a way to to tell sqlldr to ignore these whitespaces other than by saying
field "trim(:field)"
...
0
votes
1answer
15 views
Secure application roles and SQL*Loader
I'm working with secure application roles to grant access to users. In its dumbest form, it looks like that:
create or replace package body main_user.PACK_SAR is
procedure grant_role is
begin
...
0
votes
0answers
67 views
Where can I download sqlldr binary for OSX?
I need to perform sqllder from terminal but I cannot find sqlldr binary for mac even I have asked google...
0
votes
1answer
77 views
Oracle. load data infile error
Table:
CREATE TABLE image_table (
image_id NUMBER(5),
file_name VARCHAR2(30),
image_data BLOB);
SQL:
load data infile * replace into table test_image_table
fields terminated by ','
(
...
0
votes
1answer
60 views
bulk load UDT columns in Oracle
I have a table with the following structure:
create table my_table (
id integer,
point Point -- UDT made of two integers (x, y)
)
and i have a CSV file with the following data:
#id, point
...
0
votes
1answer
199 views
Oracle error:- LRM-00116: syntax error at 'control' following '='
Oracle DB/Windows XP:-
I am running an batch file that calls an “.ctl” file which in turn calls an “.xls” file, both present in the same folder.
The idea is to load the data onto Orcale db ...
0
votes
1answer
147 views
Is there a sqlldr api for java
I want to use sqlldr from a java program, but I dont want to invoke it using "Runtime.exec".
is there such api for sqlldr in java.
0
votes
1answer
186 views
Oracle SQL loader Error while loading really huge log files
I have a python script which loops through log files in a directory and uses oracle sqlloader to load the log files to the oracle database. the script works properly and even the sqlloader..
But ...
0
votes
0answers
52 views
Using sqlldr to load data in oracle from txt file
Sorry for the confusion. I am doing it in the following way. I have created a file called time_card.sql on the desktop. When I click this file it loads data from the txt file into a temp table in ...
0
votes
3answers
333 views
Is it possible for Oracle sqlldr to accept a TNS entry as an instance qualifier in Oracle 10 and 11?
Is it possible to use a fully qualified TNS entry using sqlldr bundled with Oracle 10/11?
For example, in SQLPlus:
sqlplus ...
0
votes
1answer
310 views
sqlldr LRM-00112: multiple values not allowed for parameter 'control'
I have a shell script with this code:
sqlldr $ws_usr_eva/$ws_pass_eva@$ws_esq_eva CONTROL=/$HOME/controlfiles/CONTROL_FILE.CTL LOG=/$HOME/batch/log/LOG_FILE.$fecfile.log ...
0
votes
1answer
57 views
sql loader associating variable number physical records with a single physical record
I have the following data:
Aapple mango wood
Bpine tea orange
Bnuts blots match
Ajust another record
Now I want every record beginning with 'A' to be associated with record beginning with 'B' until ...
0
votes
0answers
70 views
sql loader combining physical records to a logical record with continueif
I am trying to combine several physical records to a logical record as stated here:
http://download.oracle.com/docs/cd/B19306_01/server.102/b14215/ldr_control_file.htm#i1005509
Here's the control ...
0
votes
1answer
26 views
SQL Loader issue
We are stuck with a problem in sql loader. We are trying to load a data file with around 4.6 billion rows (nearly 340 GB) into 2 oracle tables on the basis of some when condition using Sql Loader. But ...
0
votes
1answer
43 views
How do I load files with multiple master detail data?
I would like to load below files into the oracle database which have multiple master detail data using the sqlldr.
Sample File :
1 015
3 brnadcode1 brandname1
3 brnadcode2 brandname2
3 brnadcode3 ...
0
votes
2answers
73 views
SQL*Loader job exits unexpectedly and causes table to be locked with NOWAIT
I have a weekly report job that I run where I have to load about 48 logs with about 750k rows of data in each log. To facilitate this, we have been using a Java job that runs SQL*Loader as an external ...
0
votes
2answers
287 views
SQLLDR and NULL Field detection in column to be imported
SQLLDR and CTL file
Got a CSV file to import.
I want to specify in my CTL file to insert only into my table when i've got an empty value in a certain column in my CSV file. E.G I want to upload ...
0
votes
2answers
371 views
using sqlldr from java
I have a Java utility for database imports. I'd like to be able to use sqlldr for performance on oracle. I could create the control and data files, but that doesn't seem like The Right Thing™ to do. I ...
0
votes
1answer
492 views
Error in loading a data from the txt file to oracle table using sqlldr
my .ctl file is :
LOAD DATA
INFILE "C:\Users\nkb1\Desktop\fnames.txt"
INTO TABLE MDB.TEACHERS
FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"'
(first_name,last_name)
i am executing this ...
0
votes
1answer
302 views
SQLLDR — selective loading from pipe delimited txt
I am looking for a way to do selective loading using SQLLDR.
The source file is in "pipe delimited" format.
I know there is a way for this if the source is in a predefined position. It is explained ...
0
votes
4answers
221 views
ORA-00054 while loading large data file
I get ORA-00054 while loading large data files(~ 10 gb)
The error occurs when this a new file is loaded after a previous file.
Any ideas how I can solve this?
0
votes
1answer
384 views
Trouble using sqlldr.exe with NCLOB values when unicode characters not in ASCII code range are used
When we use sqlldr to populate an NCLOB column with a text value from a lob file and the character is not in the regular ASCII code range sqlldr bombs.
Seemingly relevant sections from log file:
...
0
votes
1answer
305 views
How to specify tab delimitation file load in Oracle sqlldr control file?
This should be simple, but what is the correct syntax for an Oracle sqlldr control file in order to specify tab delimited/separated data?
FWIW, I found the file was UTF16 and not UTF8, and was ...
0
votes
1answer
313 views
How to load into oracle when timestamp > 12345678900
I have a rather huge file (50mb) where the first field is a unix timestamp.
However, I don't want to load the whole file, I need only half of it where timestamp > some_parameterized_timestamp.
It ...
0
votes
2answers
306 views
SQLLDR and skip_unusable_indexes
I have a table with a Unique Index that I need to load 800,000 rows into.
I altered the index and made it unuseable.
I added 'options( rows=4000, bindsize=512000, skip_unusable_indexes=TRUE )' to my ...