|
Re: how to display table schema [message #371961 is a reply to message #371947] |
Wed, 27 December 2000 09:43 |
me
Messages: 66 Registered: August 2000
|
Member |
|
|
if you have select privilege on dba views this one will show you the schema (owner) for all tables:
SELECT * FROM DBA_TABLES
if not this one will show you the schema (owner) for all tables that you have privileges to:
SELECT * FROM ALL_TABLES
|
|
|
Re: how to display table schema [message #371962 is a reply to message #371947] |
Wed, 27 December 2000 09:48 |
me
Messages: 66 Registered: August 2000
|
Member |
|
|
if you have select privilege on dba views this one will show you the schema (owner) for all tables:
SELECT * FROM DBA_TABLES
if not this one will show you the schema (owner) for all tables that you have privileges to:
SELECT * FROM ALL_TABLES
|
|
|