kabirpatel
Programmer
Hi all,
I have an ADO recordset that contains about 100,000 records.
Is it possible to delete the first 60,000 records from this recordset using one command?
At the moment I am using the following:
For intX = 1 To 60000
rs.Delete adAffectCurrent
rs.MoveNext
Next
The above is very slow so I need an alternative.
Thanks in advance
Kabir