Reputation: 131
I have a table name but I am not sure in which schema that table exists. How to find the schema name?
Upvotes: 10
Views: 53582
Reputation: 7679
Something like this should get the name of the table and the the schema it belongs to .
select owner, table_name
from all_tables
where table_name like 'GL%';
Upvotes: 11