How do I query an Oracle database to display the names of all tables in it?
|
|
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
although that may be a subset of the tables available in the database |
||||||
|
|
|
select * from tab; also shorter |
||
|
|
|
|
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 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. |
||
|
|
|
|
select * from tabs; shorter version... |
||
|
|
|
|
|
|||
|
|
|
|
|
|||
|
|
|
|
Querying
|
||
|
|
|
Try selecting from user_tables which lists the tables owned by the current user. |
||
|
|
