Tagged Questions
Oracle SQL Loader is a tool that ships with Oracle Database software designed to bulk load data from files into Oracle tables.
10
votes
5answers
803 views
Is there any way to use a strftime-like function for dates before 1900 in Python?
I didn't realize this, but apparently Python's strftime function doesn't support dates before 1900:
>>> from datetime import datetime
>>> d = datetime(1899, 1, 1)
>>> ...
5
votes
1answer
166 views
Oracle SQL*loader running in direct mode is much slower than conventional path load
In the past few days I've playing around with Oracle's SQL*Loader in attempt to bulk load data into Oracle. After trying out different combination of options I was surprised to found the conventional ...
5
votes
3answers
2k views
External Tables vs SQLLoader
So, I often have to load data into holding tables to run some data validation checks and then return the results.
Normally, I create the holding table, then a sqlldr control file and load the data ...
4
votes
2answers
4k views
User Interface for creating Oracle SQL Loader control file
Is there a good user interface for authoring Oracle SQL Loader control files? PL/SQL Developer includes a "Text Importer" feature (that reminds one of the Excel import wizard) to import text files ...
3
votes
2answers
291 views
Oracle SQL Loader split data into diferent tables
I have a Data file that looks like this:
1 2 3 4 5 6
FirstName1 | LastName1 | 4224423 | Address1 | PhoneNumber1 | 1/1/1980
FirstName2 | ...
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
3answers
3k views
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 it into the table along with data from the input file?
Let's say for example I have the following ...
2
votes
1answer
43 views
Can I execute multiple control files by one command?
I have following 3 control files which I have to execute on my DB server-
X.ctl
Y.ctl
Z.ctl
I know the command to execute them one by one which is as follows -
sqlldr PP_DBUSER/PP_DBUSER ...
2
votes
1answer
74 views
Disable BAD/Discard file log on SQL Loader
Is there a way to prevent sqlloader from creating either the BAD file or the DISCARD file or both?
I read in a forum that setting the BAD parameter to NUL or NULL does that, but it doesn't seem to ...
2
votes
2answers
92 views
Alternative of sql loader in mysql
I have found sql loader in oracle is very helping, fast and efficient, Is their any alternative for that in MySql ?
2
votes
2answers
127 views
Problem while using Load when clause?
I need to reject the rows from an external table which starts (first column of every row) with some special characters (eg. ~ \ etc) in a CSV file.
For that I have used LOAD WHEN clause in the ACCESS ...
2
votes
1answer
292 views
“No child processes” error in perl
I have a Perl script which invokes the sqlldr and loads data to a table from a flat file.
Now, my problem is, even though the sqlldr loads the table fine it is returning exit code as -1(got by using ...
2
votes
1answer
177 views
46 Control Files for SQL Loader
I have to load 46 tables with data using SQL Loader for Oracle. All the data files are CSV.
The column order in the CSV matches the column order in the table.
I need to create a control file for ...
2
votes
2answers
1k views
Convert date from one format to another using SQL*Loader control file
The data from the infile is in the format MM/DD/YYYY how do I tell the control file to load it into the database as YYYYMM?
2
votes
3answers
524 views
Loading large amounts of data to an Oracle SQL Database
I was wondering if anyone had any experience with what I am about to embark on. I have several csv files which are all around a GB or so in size and I need to load them into a an oracle database. ...
2
votes
1answer
644 views
sql loader log file result
I am using SQLloader in ASP.NET appliaction to automate the bulk upload data to oracle db from CSV/EXCEL.
Sqlloader creates a log file that shows the result of import that is created on server.
I ...
2
votes
1answer
177 views
Why would I use SQL*Loader conventional load paths?
My understanding of SQL*Loader's conventional path is that it simply generates INSERT statements and sends them to the database. Are there any performance benefits to using this rather than just ...
2
votes
3answers
11k views
How to populate a timestamp field with current timestamp using Oracle Sql Loader
I'm reading a pipe delimited file with SQL Loader and want to populate a LAST_UPDATED field in the table I am populating. My Control File looks like this:
LOAD DATA
INFILE SampleFile.dat
REPLACE
...
2
votes
1answer
1k views
Oracle External Tables: Advanced Flat File Layout
I wish to create an external table in an Oracle database, retrieving its data from a flat file on the server. The format of this file is non-trivial. Each line in this file can be one of several ...
1
vote
3answers
44 views
SQL*Loader: Dealing with delimiter characters in data
I am loading some data to Oracle via SQLLDR. The source file is "pipe delimited".
FIELDS TERMINATED BY '|'
But some records contain pipe character in data, and not as separator. So it breaks ...
1
vote
1answer
41 views
Sql loader conditions
Can I do something like this in SQL LOADER?
LOAD DATA
INFILE 'table_with_one_million_rows.dat'
INTO TABLE TABLE_WITH_ONE_MILLION_ROWS
FIELDS TERMINATED BY ','
TRAILING NULLCOLS
(
COL1 ...
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
2answers
69 views
Dynamic SQL-Loader control file
I have 20 tables that are temp-tables where we load and validate data constantly and I have a control file for each table.
How can I have a unique control file that just changes the table the data is ...
1
vote
1answer
89 views
Error with Oracle control file : no terminator found after TERMINATED and ENCLOSED field
I'm loading data to a Oracle 10g database through a control file and i get this error :
no terminator found after TERMINATED and ENCLOSED field
My control file has a specific definition of separators ...
1
vote
1answer
115 views
Sql Loader error “Token longer than max allowable length of 258 chars”
I am getting the below error on loading the data to a table using SQL Loader.
SQL*Loader-350: Syntax error at line 21.
Token longer than max allowable length of 258 chars
...
1
vote
1answer
136 views
how to redirect python's subprocess.Call methods output to a file and not console?
I am using python's Call method in subprocess module to execute a sqlldr command
from subprocess import call
retcode = call([self.COMMAND, self.CONNECTION_STRING, "control=" +self.CONTROL_FILE,
...
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
1answer
258 views
how can i validate the data in the control file?
Consider that the SQLLoader reads the Input data File from the path and it loads the data into the tables based up on the descrition specified in the control File.
First, the table to be filled is ...
1
vote
2answers
296 views
SQL Loader Issue
Some of the columns that I am trying to load into Oracle via SQL Loader from an XML file are null. For example may have several filled but ocassionally it has some nulls.
How can I tell the ...
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
282 views
How to store the .dat file name in the table using SQL Loader
I have hundreds of data files that all have the same structure and all need to be loaded into the same table. However, there is an extra column called "filename" in the table, and I am supposed to ...
1
vote
1answer
193 views
Load a structured text data file using only one control file
I have a text file need to be loaded have structure like this (badly, I don't have permit to change):
MM/DD/YYYY 24HH:MI:SS NO_OF_REC
EMP_ID,EMPNAME,SALARY
.....
Ex:
12/24/2010 20:30:10 ...
1
vote
2answers
93 views
Populate an SQL Server 2k8 with Oracle Loader files
Here's the problem:
I have a project that needs to be migrated to Microsoft SQL Server 2008.
We have data in text files for the Oracle SQL Loader and now we need to get that data into the SQL Server ...
1
vote
2answers
258 views
using sql loader in ruby
I just wonder if you know where to find a tutorial or samples of a Ruby script using sql *loader?
1
vote
1answer
157 views
Prevent password leakage while using sql* loader
I have shell script calling Sql*loader utility which inturn uses username/password as arguments. This details cannot be stored on server in any form due to security related policies. i got 2 ...
1
vote
1answer
1k views
Oracle sqlldr: column not allowed here
Can anyone spot the error in this attempted data load? The '\\N' is because this is an import of an OUTFILE dump from mysql, which puts \N for NULL fields.
The decode is to catch cases where the ...
1
vote
4answers
749 views
SQL*Loader problem
I am getting an error SQL*Loader-606, which means:
The synonym specified in the INTO
TABLE clause in the SQL*Loader control
file specifies a remote object via a
database link. Only a synonym ...
1
vote
1answer
858 views
How do I escape an enclosure character in a SQL Loader data file?
I have a SQL*Loader control file that has a line something like this:
FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '#'
Normally, I'd use a quotation mark, but that seems to destroy emacs's ...
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
1answer
1k views
Oracle SQL*Loader getting CDATA values
Anybody knows how to do this? I know there's a better way of loading XML data to Oracle without using SQL*Loader, but I'm just curious on how this is done using it. I have already a code that can ...
1
vote
3answers
3k views
Error “stopped because I can't continue” in SQLLoader - DIRECT mode
When trying to load a large text file into the oracle db using SQLLoader, we get the following errors:
SQL*Loader-926: OCI-Error; uldlfca:OCIDirPathColArrayLoadStream for table <myTabele>
...
0
votes
1answer
34 views
sql loader transfering some characters into?
I faced problems while importing data from .csv into Oracle database. I am using Oracle Sql Loader utility.
Characters which do not exist in the English alphabet were transformed to question marks in ...
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
1answer
202 views
java.io.IOException: Cannot run program “sqlldr”: CreateProcess error=2, The system cannot find the file specified
Have written a method in JSF action bean which 'll execute sqlldr command, but the thing is am getting error at "Process".
But the same code work fine and load the data into a table when i tried it ...
0
votes
1answer
128 views
Loading Unicode Characters with Oracle SQL Loader (sqlldr) results in question marks
I'm trying to load localized strings from a unicode (UTF8-encoded) csv using SQL Loader into an oracle database. I've tried all sort of combinations but nothing seems to give me the result I'm looking ...
0
votes
2answers
35 views
Conditional loading with Sql*Loader
Using SQL*Loader, I want a condition like this:
Load the record if : substr(Col,3,2)='06'
Col
------
10062034
.
.
.
Is there any way to combine WHEN with substr ...
0
votes
1answer
74 views
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 quotes is getting enclosed to the value inserted.
example:
"917681904 "
...
0
votes
4answers
108 views
Using wildcard character in bash scripting
I'm creating a bash script that will load CSV files using SQL*Loader. Please refer to the code below:
#!/bin/bash
FILENAME = '/u02/logs/$(date -d '2 days ago' +%Y-%m-%d)*.csv'
# LOAD CSV FILE USING ...
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 ...