Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Need to update a field with data from another field in a diferent database

Thanks a lot

share|improve this question
1  
You will need to add a little information. At a very minimum, which databases? – Remou Feb 7 '11 at 13:08
What server? What's the problem? What's the question? – Andriy M Feb 7 '11 at 13:56
I Have two SQL comercial Databases from the same company, the first Databases has one field that is null in the other, need to update the Database that was null field with the data of the first one. – MikeRTeixeira Feb 7 '11 at 14:54
sql is not the same as sql-server. sql is a generic tag. – Remou Feb 7 '11 at 15:04
Sorry made a typing mistake... I Have two SQL comercial Databases from the same company, the first Database has one field that is null in the other, need to update the Field/Database that is null with the data of the first one. – MikeRTeixeira Feb 7 '11 at 15:07

1 Answer

MS SQL Server

Update table1 in current database from table1 in database called "DataBaseName"

update table1
set col2 = T2.col2
from DataBaseName.dbo.table1 as T2
  where table1.ID = T2.ID and
        table1.col2 is null
share|improve this answer
works like a charm, Thanks a lot!!! – MikeRTeixeira Feb 7 '11 at 15:24
1  
@MikeRTeixeira: By marking Mikael's answer as accepted you will prove yourself not only polite but also a diligent and careful member of the community. :) – Andriy M Feb 7 '11 at 15:35
There's nothing careful about marking an answer correct - Polite and perhaps diligent, but not careful – d-_-b Dec 19 '12 at 6:42

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.