I want to update the CustomerID field in the Customer table from Server "A" using the data in the CustomerID field in the Customer table from Server "B" by executing an UPDATE SQL statement like below. I don't want to link the servers at this point unless I have to.
strSQLChange = "Update A.Customers Set A.Customers.CustomerID = B.Customers.CustID FROM B.Customers WHERE A.Customers.CustId = B.Customers.CustomerGUID"