Thanks for the help, much appreciated. But one more question to bug you.
SQLInsert = " INSERT " & _
" INTO Archive " & _
" (PLAYERNUMB, LNAME, FNAME) " & _
" SELECT PLAYERNUMB, LNAME, FNAME " & _
" FROM Player " & _
" WHERE ACTIVE = FALSE;"
If I do a response.write ""&SQLInsert&""
INSERT INTO Archive (PLAYERNUMB, LNAME, FNAME) SELECT PLAYERNUMB, LNAME, FNAME FROM Player WHERE ACTIVE = FALSE;
No loops needed?
Sorry about this, never done an INSERT .. SELECT... before.
EDIT: Ok, tried the actual query right inside MS Access and it works great. So I just answered my own question there, no loops needed at all. Still not working properly in the ASP page, so I'm going to have to keep trying different approaches. Kind of curious though, cause when I did it in MS Access I got a promprt asking if I want to continue with the APPEND query. Wonder if ASP sees that prompt when I run the query or if it just ignores it.
Ok I got it, turns out that I'm just an idiot thats all.
Thanks ever so much for your help, much appreciated. Just need to fire off a query to delete the records that were moved in the original table to the archive table and I'll be set.
Thanks again.