I wrote an ASP script to add records to a table in SQL Server 7 from a
similar table in Access - Added 35000 records in a few minutes. Now I am
trying to delete most of those records (about 34000) and it is going VERY
SLOW, so far the script has been running for about 2 hours. Any hints as to
how to speed it up?
I use the following code:
rs.Open "SELECT * FROM ShortStories WHERE DateTime < '"&date&"'", strDSN,
1, 3, &H0001
Do While NOT rs.eof
rs.Delete
rs.MoveNext
Loop
TIA,
-serge