the situation :
Server A :
SQL 7 with linked server on B (ole db driver)
MyDB_A.table : 50 rows
Server B :
SQL 2K with linked server on A (ole db driver)
MyDB_B.table : 40 rows
The problems :
On A
select count(*) from B.MyDB_B.dbo.table
-> 50 rows
On B
select count(*) from B.MyDB_B.dbo.table
-> 40 rows
The Question :
Why my queries are always returning rows from the current server and not from the linked as demanded ?
Server A :
SQL 7 with linked server on B (ole db driver)
MyDB_A.table : 50 rows
Server B :
SQL 2K with linked server on A (ole db driver)
MyDB_B.table : 40 rows
The problems :
On A
select count(*) from B.MyDB_B.dbo.table
-> 50 rows
On B
select count(*) from B.MyDB_B.dbo.table
-> 40 rows
The Question :
Why my queries are always returning rows from the current server and not from the linked as demanded ?