Can i join tables from different server. I am trying to do something like this. Gives me error.
select e.jobnumber,
baandb.dbo.ttisfc001201.t_pdno,
baandb.dbo.ttisfc001201.t_mitm,
baandb.dbo.ttiitm001201.t_dsca
from dfb_erp.baandb.dbo.ttisfc001201 ,
dfb_erp.baandb.dbo.ttiitm001201 ,
emplhrdtltest e
where baandb.dbo.ttisfc001201.t_mitm = baandb.dbo.ttiitm001201.t_item
and baandb.dbo.ttisfc001201.t_pdno = e.jobnumber
baandb - Database
DFB_ERP - different server
select e.jobnumber,
baandb.dbo.ttisfc001201.t_pdno,
baandb.dbo.ttisfc001201.t_mitm,
baandb.dbo.ttiitm001201.t_dsca
from dfb_erp.baandb.dbo.ttisfc001201 ,
dfb_erp.baandb.dbo.ttiitm001201 ,
emplhrdtltest e
where baandb.dbo.ttisfc001201.t_mitm = baandb.dbo.ttiitm001201.t_item
and baandb.dbo.ttisfc001201.t_pdno = e.jobnumber
baandb - Database
DFB_ERP - different server