I'm currently attempting to run an update on a table using a linked server
Ex.
update table1 a
set a.column1=(select Count(b.column1) FROM linkedserver.databse.table b)
where a.column2=b.column2
and a.column3=b.column3
My problem is:
The multi-part identifier "linkedserver.databse.table.column" could not be bound.
The only way i can see this working is with aliases and i know the server has the appropriate access to the linked server.