I have an access 97 database with some tables linked to Oracle. I have an SQL statement that runs when I open the recordset using the following statement.
set rs = currentDB.OpenRecordset(SQ
L)
I then iterate through the SQL statement using
while not rs.eof
'code'
rs.movenext
wend
the SQL statement takes about 30-40 seconds to run. But It also takes another 30-40 seconds every time the rs.movenext statement executes. Why does it take so much time just to move to the next record?
Thanks
rthomsen
Start Free Trial