Hi,
I am trying to load around 3 million records in a table using sql loader (Oracle 8.1.7). It is a simple load of a comma delimited file.
I was able to load the same data before with the speed atleast 100 times faster
I dont know what happenned and what do do to fix this thing.
I have to deliver it today, so if please if someone can help me out with it.
Infact I even tried direct=y in the parfile but the load does not progress at all, it just hangs.
Thanks
Ronnie
Here is the control file
--------------------------
load data
infile 'loadhfod.dat'
badfile 'hfod.bad'
discardfile 'hfod.dcs'
truncate
into table ofas
fields terminated by ","
(company,
time,
region,
lineitem,
actual
nullif (actual = BLANKS),
actualus
nullif (actualus = BLANKS),
year_quarter)
Table Structure
----------------
SQL> desc ofas
Name Null? Type
----------------------------------------- -------- -----------------
COMPANY VARCHAR2(10)
TIME VARCHAR2(10)
REGION VARCHAR2(10)
LINEITEM VARCHAR2(15)
ACTUAL NUMBER(20,6)
ACTUALUS NUMBER(20,6)
YEAR_QUARTER VARCHAR2(5)
Bookmarks