Frage

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 !

War es hilfreich?

Lösung

You can look this up on the all_tables system table:

select distinct owner
from all_tables
where table_name = 'mytable'
Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top