oralearner
Programmer
Hi,
I have a stored procedure that loads 300,000 rows in table1.
The loading logic is
1)insert all 300,000 rows (first 10 columns only)
2)commit
3)perform some lookups and update remaining 5 columns using BULK features.
I run the same procedure on two different tables on different schemas (on the same database) there is a lot of difference in performance.
Storage settings for Table1
-------------------------
Schema1 Schema2
-----------------------------------
Inital Extent 512 KB 128 MB
Next Extent 640 KB 128 MB
Table Size 128 MB 128 MB
PCT Increase 0 0
No of Extents 205 1
Execution Time 6 Minutes 3 Hours
Can anyone help me understand this ?
I have a stored procedure that loads 300,000 rows in table1.
The loading logic is
1)insert all 300,000 rows (first 10 columns only)
2)commit
3)perform some lookups and update remaining 5 columns using BULK features.
I run the same procedure on two different tables on different schemas (on the same database) there is a lot of difference in performance.
Storage settings for Table1
-------------------------
Schema1 Schema2
-----------------------------------
Inital Extent 512 KB 128 MB
Next Extent 640 KB 128 MB
Table Size 128 MB 128 MB
PCT Increase 0 0
No of Extents 205 1
Execution Time 6 Minutes 3 Hours
Can anyone help me understand this ?