R rkw12345 New member Local time Today, 14:18 Joined May 21, 2004 Messages 8 Aug 10, 2004 #1 Hello all, I am in need of a fast way to drop all the contents from a table that has over 65,000 records, it is being refreshed weekly. Any help is appreciated. Thanks.
Hello all, I am in need of a fast way to drop all the contents from a table that has over 65,000 records, it is being refreshed weekly. Any help is appreciated. Thanks.
The_Doc_Man Immoderate Moderator Staff member Local time Today, 16:18 Joined Feb 28, 2001 Messages 28,688 Aug 10, 2004 #2 Delete query. DELETE * FROM table-name ; Or you can qualify it... DELETE * FROM table-name WHERE field-1 = "XYZ" AND ... ;
Delete query. DELETE * FROM table-name ; Or you can qualify it... DELETE * FROM table-name WHERE field-1 = "XYZ" AND ... ;
R rkw12345 New member Local time Today, 14:18 Joined May 21, 2004 Messages 8 Aug 10, 2004 #3 Thank you very much, you have just saved me a morning each week that was used to empty various tables in our database.
Thank you very much, you have just saved me a morning each week that was used to empty various tables in our database.