vote up 2 vote down star
1

How do I query an Oracle database to display the names of all tables in it?

flag

8 Answers

vote up 12 vote down check
SELECT owner, table_name
  FROM dba_tables

assuming that you have access to the DBA_TABLES data dictionary view. If you do not have those privileges but need them, you can request that the DBA explicitly grants you privileges on that table or that the DBA grants you the SELECT ANY DICTIONARY privilege or the SELECT_CATALOG_ROLE role either of which would allow you to query any data dictionary table. Of course, you may want to exclude certain schemas like SYS and SYSTEM which have large numbers of tables that you probably don't care about because those are all delivered by Oracle.

If you do not have access to DBA_TABLES, you can see all the tables that your account has access to through the ALL_TABLES view

SELECT owner, table_name
  FROM all_tables

although that may be a subset of the tables available in the database

link|flag
I'm getting an exception "ORA-00942: table or view does not exist" – vitule Oct 15 '08 at 18:02
Then you haven't been given permission to see all the tables in the database. You can query the ALL_TABLES data dictionary view to see all the tables you are allowed to access, which may be a small subset of the tables in the database. – Justin Cave Oct 15 '08 at 18:11
@Justin: Thanks. I wrote my own answer at the same time you wrote this comment. I'm accepting your answer. – vitule Oct 15 '08 at 18:15
vote up 1 vote down

Try selecting from user_tables which lists the tables owned by the current user.

link|flag
vote up 1 vote down

Querying user_tables and dba_tables didn't work.
This one did:

select table_name from all_tables
link|flag
For a more complete answer, see the accepted answer including the comments. – vitule Oct 15 '08 at 18:16
vote up 1 vote down

select * from tabs;

shorter version...

link|flag
vote up 1 vote down
select table_name from tabs;
link|flag
vote up 1 vote down

Going one step further, there is another view called cols (all_tab_columns) which can be used to ascertain which tables contain a given column name.

For example:

SELECT table_name, column_name
FROM cols
WHERE table_name LIKE 'EST%'
AND column_name LIKE '%CALLREF%';

to find all tables having a name beginning with EST and columns containing CALLREF anywhere in their names.

This can help when working out what columns you want to join on, for example, depending on your table and column naming conventions.

link|flag
vote up 1 vote down

select * from tab;

also shorter

link|flag
vote up 0 vote down
SELECT * FROM USER_TABLESPACES
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.