klewis10367
MIS
I want to update a table on one server from a table on another server using dts where only new transactions are updated. I have brain farted and and have no idea howe to do it. Any help would be apprecited.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
UPDATE a
SET a.somefield = somevalue
FROM table a
INNER JOIN linkedservername.databasename.schema owner.tablename b
ON a.field1 = b.field1
WHERE b.transaction = 'Updated'