get the data from more than one database
Database
2
Posts
2
Posters
0
Views
1
Watching
-
Hi all, I want to get the data from tables of two different database.Is it possible Pls help thanks lucky
-
Hi all, I want to get the data from tables of two different database.Is it possible Pls help thanks lucky
you can select data from tables in different databases as:
Select A.Flds , B.Flds From Server1.db1.dbo.Table1 A Inner Join Server1.db2.dbo.Table1 B A.Fld = B.Fld
Regards, Javed