If you have three servers [[1],[2],[3]] that are linked in sequence via database links ([1] -> [2], [2] -> [3]), is it possible to "daisy chain" queries so that a user logged into [1] could read (or worse delete from) tables in [3]? Something like...
SELECT * FROM DBA_TABLES@2@3;
?
I am a user on database where the dba has set up public links between these databases and I am trying to figure out exactly the extent of how bad this. I already know that I have elevated privileges on 2, but I am concerns that the links on [2] to [3] could be exploited further.
Thanks for the input.