Link to home
Start Free TrialLog in
Avatar of radcoders
radcoders

asked on

See all tables within an oracle dblink

I need to see all the tables within a dblink'd schema in oracle. What is the query to see all tables?
ASKER CERTIFIED SOLUTION
Avatar of slightwv (䄆 Netminder)
slightwv (䄆 Netminder)

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of radcoders
radcoders

ASKER

Thanks that worked!
Glad to help.

I suppose I should also point out that there is a USER level view that will show you the tables owned by the user used in the dblink.

ALL level views show everyhing this user can access.

User level:
select table_name from user_tables@dblinkname;