How to test a user's dblink as sys user
511874Jun 13 2008 — edited Jun 13 2008From USER1 I'm able to test the following dblink:
select * from dual@"DBLINK_TEST";
D
-
X
How can I test it as SYS user ?
I was expecting something like...
select * from dual@USER1."DBLINK_TEST";
but it doesn't work.