How do I list all tables in a schema in Oracle SQL?

SqlOracle

Sql Problem Overview


How do i list all tables in a schema in Oracle SQL?

Sql Solutions


Solution 1 - Sql

To see all tables in another schema, you need to have one or more of the following system privileges:

SELECT ANY DICTIONARY
(SELECT | INSERT | UPDATE | DELETE) ANY TABLE

or the big-hammer, the DBA role.

With any of those, you can select:

SELECT DISTINCT OWNER, OBJECT_NAME 
  FROM DBA_OBJECTS
 WHERE OBJECT_TYPE = 'TABLE'
   AND OWNER = '[some other schema]'

Without those system privileges, you can only see tables you have been granted some level of access to, whether directly or through a role.

SELECT DISTINCT OWNER, OBJECT_NAME 
  FROM ALL_OBJECTS
 WHERE OBJECT_TYPE = 'TABLE'
   AND OWNER = '[some other schema]'

Lastly, you can always query the data dictionary for your own tables, as your rights to your tables cannot be revoked (as of 10g):

SELECT DISTINCT OBJECT_NAME 
  FROM USER_OBJECTS
 WHERE OBJECT_TYPE = 'TABLE'

Solution 2 - Sql

SELECT table_name  from all_tables where owner = 'YOURSCHEMA';

Solution 3 - Sql

You can query USER_TABLES

select TABLE_NAME from user_tables

Solution 4 - Sql

You can directly run the second query if you know the owner name.

--First you can select what all OWNERS there exist:

SELECT DISTINCT(owner) from SYS.ALL_TABLES;

--Then you can see the tables under by that owner:

SELECT table_name, owner from all_tables where owner like ('%XYZ%');

Solution 5 - Sql

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.

select * from tab;

Solution 6 - Sql

select * from cat;

it will show all tables in your schema cat synonym of user_catalog

Solution 7 - Sql

Try this, replace ? with your schema name

select TABLE_NAME from  INFORMATION_SCHEMA.TABLES
 WHERE TABLE_SCHEMA =?
  AND TABLE_TYPE = 'BASE TABLE'

Solution 8 - Sql

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:

select TABLE_NAME from user_tables

Solution 9 - Sql

select TABLE_NAME from user_tables;

Above query will give you the names of all tables present in that user;

Solution 10 - Sql

select * from user_tables;

(showing all tables)

Solution 11 - Sql

SELECT table_name, owner FROM all_tables where owner='schema_name' order by table_name

Solution 12 - Sql

Name of the table and rows counter for all tables under OWNER schema:

SELECT table_name, num_rows counter from DBA_TABLES WHERE owner = 'OWNER'

Solution 13 - Sql

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

Solution 14 - Sql

If you need to get the size of the table as well, this will be handy:

select SEGMENT_NAME, PARTITION_NAME, BYTES from user_segments where SEGMENT_TYPE='TABLE' order by 1

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionbenstpierreView Question on Stackoverflow
Solution 1 - SqlAdam MuschView Answer on Stackoverflow
Solution 2 - SqlTomView Answer on Stackoverflow
Solution 3 - SqlSathyajith BhatView Answer on Stackoverflow
Solution 4 - SqlKermit the FrogView Answer on Stackoverflow
Solution 5 - SqlchanView Answer on Stackoverflow
Solution 6 - SqlArsalan SheikhView Answer on Stackoverflow
Solution 7 - SqlSQLMenaceView Answer on Stackoverflow
Solution 8 - SqlPablo Santa CruzView Answer on Stackoverflow
Solution 9 - SqlA A NayakView Answer on Stackoverflow
Solution 10 - SqlyashView Answer on Stackoverflow
Solution 11 - SqlSreejuView Answer on Stackoverflow
Solution 12 - SqlSergioLeoneView Answer on Stackoverflow
Solution 13 - SqlMichał NiklasView Answer on Stackoverflow
Solution 14 - SqlVijay KumarView Answer on Stackoverflow