Jul 2, 2002 #1 Alira Programmer Joined Mar 21, 2001 Messages 77 Location CA Hi All! What would be the best way for "removing from table1 - appedning to table2" couple of thousand records at a time? Have a great day!
Hi All! What would be the best way for "removing from table1 - appedning to table2" couple of thousand records at a time? Have a great day!
Jul 2, 2002 #2 fluteplr Programmer Joined Oct 23, 2000 Messages 1,599 Location US Assuming the table structures are the same. insert into table2 select * from table1 You can add field lists if needed as well as a where clause on the select. Deletes are just delete from table1 where (enter your where clause here) Upvote 0 Downvote
Assuming the table structures are the same. insert into table2 select * from table1 You can add field lists if needed as well as a where clause on the select. Deletes are just delete from table1 where (enter your where clause here)