
Originally Posted by
JoeM
As pbaldy said, you need to join the two tables in this query. Otherwise you will have a Cartesian product, which would explain the explosion of records you are seeing.
Without a join, every single record form SapToAccess is being joined to every single record from [Project_List_Local].
So, if you have 1500 records in one, and 700 records in the other, you would be doing 1,050,000 record updates (1500 x 700)!
I am pretty sure that is not what you want! You don't want every single record from one table updating every single record from the other, do you?
Most of the changes will be overwriting each other.
Surely, there must be some relationship between these two tables that you need to include in your query so you only update the appropriate records with the appropriate values.