Reputation: 3524
I'm looking for a way to select all schema on my oracle server, which only contain the table "mytable"
How can i do this ?
I already have a query who list all schema in my database.
SELECT username FROM all_users;
Thank you !
Upvotes: 1
Views: 345
Reputation: 58595
You can look this up on the all_tables
system table:
select distinct owner
from all_tables
where table_name = 'mytable'
Upvotes: 3