Hi,
I am trying to insert 30mn rows from a flat file to a table. I have tried various approaches. But all approaches are taking lotta time.
1)I have loaded flat file to temp table(direct load) and then from the temp table my proc. applys business logic and loads to the main table.
The updates are surprisingly faster. I have dropped the PK,FK on the main table. so the insert shud be faster but in 14hrs i have managed only abt 26% of the data. The total data size is 1.3GB.
Now is there a faster method ?
I have checked the next extents(65k) shud i increase it ?
What abt pctincrease or any other params that mite affect this ?
I have tried the BRI trigger, it has a amazing burst initially but then as the main table size grows then the thing starts to crawl !
anyways record processing is slower.
pl. give me suggestions.
--dj
I am trying to insert 30mn rows from a flat file to a table. I have tried various approaches. But all approaches are taking lotta time.
1)I have loaded flat file to temp table(direct load) and then from the temp table my proc. applys business logic and loads to the main table.
The updates are surprisingly faster. I have dropped the PK,FK on the main table. so the insert shud be faster but in 14hrs i have managed only abt 26% of the data. The total data size is 1.3GB.
Now is there a faster method ?
I have checked the next extents(65k) shud i increase it ?
What abt pctincrease or any other params that mite affect this ?
I have tried the BRI trigger, it has a amazing burst initially but then as the main table size grows then the thing starts to crawl !
anyways record processing is slower.
pl. give me suggestions.
--dj