update t set ProcessedDate = getdate() from openrowset ( 'SQLNCLI', 'SOME_INSTANCE_NAME'; 'user_name'; 'her_password', 'select * from DB_NAME.SCHEMA_NAME.TABLE_NAME where some_condition_is_met' ) t inner join some_local_table loc on t.SomeColumn = loc.SomeColumn; goThe above updates the remote table from its join with the local table.
10 People are following this question.