I have an Acess 97 Recordset and want to update it from an AS/400-Recordset and it takes 24 hours !!! with an ado-connection. Do you know how to accelerate the process without using stored procedures ?
Thats ridiculous. I thought you were going to say 44,000,000. Are you doing a lot of calculations? How are you doing the update?
Peter Meachem
peter@accuflight.com
I open both recordsets as commands from the Dataenvironment, the Access-RS as readonly, the AS/400-RS as read and write. Then move to the first record in the Access-RS, and ... (de=Dataenvironment)
with de.rsAccess
while not.eof
de.rsAS400.addnew
de.rsAS400.fields("test".value = .fields("test".value
de.rsAS400.update
wend
.close
end with
de.rsAS400.close
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.