RE: slow insert

2003-02-24 Thread Basavaraja, Ravindra
-Original Message- Sent: Saturday, February 22, 2003 7:54 AM To: Multiple recipients of list ORACLE-L You can read more abt it in PL/SQL User's Guide and Reference - Chapter 4 - Collections and Records ! anyway, below is the simple code to copy data from emp table. note that, after u

RE: slow insert

2003-02-24 Thread Basavaraja, Ravindra
I tried this way and infact bulk collect took about 1 minutes more than my current case? Any thoughts thanks -Original Message- Sent: Saturday, February 22, 2003 7:54 AM To: Multiple recipients of list ORACLE-L You can read more abt it in PL/SQL User's Guide and Reference -

RE: slow insert

2003-02-24 Thread Mark Richard
: Sent by: Subject: RE: slow insert [EMAIL PROTECTED

RE: slow insert

2003-02-24 Thread Basavaraja, Ravindra
PROTECTED] obile.com cc: Sent by: Subject: RE: slow insert [EMAIL PROTECTED

RE: slow insert

2003-02-22 Thread netmadcap
You can read more abt it in PL/SQL User's Guide and Reference - Chapter 4 - Collections and Records ! anyway, below is the simple code to copy data from emp table. note that, after u fetch from the cursor, u have to check for the notfound condition at the end. say, the emp table has 15 rows and u

slow insert

2003-02-21 Thread Basavaraja, Ravindra
hi, I have an insert statement that will insert about 40 records into a table having 43million records.The values for the insert statement are from a select statement that has a join.This query take about 5-10minutes.What are the ways in which we can speed up this process.the statement

RE: slow insert

2003-02-21 Thread netmadcap
if u r having oracle 8.1.7 EE or higher, try using bulk inserts ! that surely will speed up ! and of course, u surely might have thought of APPEND hint dropping/disabling indexes etc. -Original Message- Ravindra Sent: Friday, February 21, 2003 3:08 PM To: Multiple recipients of list

RE: slow insert

2003-02-21 Thread Basavaraja, Ravindra
Yes I am usng 8.1.7 EE.How do I use bulk inserts..Any docs or links on metalink plss? -Original Message- Sent: Friday, February 21, 2003 3:34 PM To: Multiple recipients of list ORACLE-L if u r having oracle 8.1.7 EE or higher, try using bulk inserts ! that surely will speed up ! and