Hi all !

We have an application under SQLServer 2000 which retrieve datas from a view under an Oracle database release 8.1.7.
It works fine until we changed the view to add a link to another Oracle database with a database link.

Example :
1)
From SQLServer :
select * from oracle_view;

view oracle_view :
select * from table_in_oracle;

--> that works fine !

2)
From SQLServer :
select * from oracle_view;

view oracle_view :
select * from table_in_oracle
union
select * from table_in_oracle@dblink_to_other_oracle_db;

--> that's not work ...

Taht anyone has encoutered this problem ?