I have a table with the following data:
CUSIP SEDOL DESC
1111 NULL ABC Corp
1234 NULL ABCD Corp
NULL 12 ABCDE Corp
Now I have another table on a different databse server:
CUSIP SEDOL DESC
1111 18 ABC Corp
1234 19 ABCD Corp
1246 12 ABCDE Corp
How do i go about in populating the NULL values in the first table based on the values provided in table in a different database server? (I'm using SQL Server 2005)