Hi khautinh,
When you want to update something in SERVER1, being connected to that, it is local to you, and you don't have to use SERVER1 reference there.
You can straight away use [b/Update DBO.table1[/b] if you use db1 as your current database. Only when you want to update any table on the remote server, you use that server referencing. But that shouldn't be causing you this error.
It is not a good practice to use SPACEs in the table/column name. It is better to remove the space in there and try updating.
Code:
Update table1
set
Salary_Standard = 66798,
Peer_Group = 'binh'
where position = 'B277'
This should work for you.
Cheers!
_________________________
- Vijay G
Strive for Perfection