I am not sure if this is feasible in ADO.NET, but i still want to run by you gurus.
I have a following sql query:
select a.name, b.id
from datasource1_table a, datasource2_table b
where a.id=b.id
1) datasource1_table - SQL Server "SQLServer1" connection
2) datasource2_table - SQL Server "SQLServer2" connection
So i have connection string that has login for both the server. I would like execute the above sql in one shot.
Is it possible?
Let me know if you need more information or clarification.
Thanks a lot in advance.