Basically I have a Database link (Oracle) called mylink.domain, in this link we can access foundation information like name of them members and other general information.
I would like to list all table's name in this link but i don't know how to do that.
Thanks in advance
These views are helpful for working with DB links in Oracle: DBA_DB_LINKS - All DB links defined in the database. ALL_DB_LINKS - All DB links the current user has access to. USER_DB_LINKS - All DB links owned by current user.
You can access the all_tables
view through the dblink:
select owner, table_name
from all_tables@dblink
order by owner, table_name;
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With