Hi -
I have local tables that needs to be updated based from another file. To update the data of the local table I usually do this
In this example I copied all the data from the other file tbl_holidays to the local tbl_holidays. Its alright if its just this one but I have atleast 20 tables where I have to repeat the same process. AND I have atleast 20 users for this?
Is there a better way to do this? an ADO approach maybe?
Thank you
Hudas
I have local tables that needs to be updated based from another file. To update the data of the local table I usually do this
Code:
strSQL = "Insert Into tbl_holidays Select * From [MS Access;DATABASE=" & pathofanotheraccessdatabase & ";pwd=" & thePwd & "].[tbl_holidays]"
CurrentDb.execute strSQL, dbfailonerror
Is there a better way to do this? an ADO approach maybe?
Thank you
Hudas