I have 3 databases A
, B
, C
.
I can only access DB A
and really want to avoid creating objects there like views, synonyms, etc.
I can't create objects on B
or C
.
I have a DB link A -> B
and a DB link B -> C
.
User and password are the same for all connections.
The following is not working
SELECT * FROM dual@Link_A_B@Link_B_C;
Is is possible with the correct syntax?
If it is not possible this way, what would be a possible workaround?