How do i list all tables in a schema in Oracle SQL?
|
To see all tables in another schema, you need to have one or more of the following system privileges:
or the big-hammer, the DBA role. With any of those, you can select:
Without those system privileges, you can only see tables you have been granted some level of access to, whether directly or through a role.
Lastly, you can always query the data dictionary for your own tables, as your rights to your tables cannot be revoked (as of 10g):
|
|||||||
|
|
|||||||
|
|
You can query
|
|||||||||
|
|
Look at my simple utility to show some info about db schema. It is based on: Reverse Engineering a Data Model Using the Oracle Data Dictionary |
|||
|
|
|
If you are accessing Oracle with JDBC (Java) you can use DatabaseMetadata class. If you are accessing Oracle with ADO.NET you can use a similar approach. If you are accessing Oracle with ODBC, you can use SQLTables function. Otherwise, if you just need the information in SQLPlus or similar Oracle client, one of the queries already mentioned will do. For instance:
|
|||
|
|
|
Try this, replace ? with your schema name
|
|||||||
|
|
If you logged in as Normal User without DBA permission you may uses the following command to see your own schema's all tables and views.
|
||||
|
|

