Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: inserting many records with ADO is very slow
Your example would not be the optimal method to perform bulk
update/insert into a database.
begin
execute immediate 'DROP TABLE SCOTT.TEST'; execute immediate 'CREATE TABLE SCOTT.TEST (NAME VARCHAR2(750))'; insert into scott.test (name) select name from table_a; commit;
2. Better yet. Use SQL Loader to insert all your data into a table used for transactions. Then use MERGE, INSERT or UPDATE to update/insert changes to main table. Received on Wed Sep 15 2004 - 13:34:30 CDT
![]() |
![]() |