How do I query an Oracle database to display the names of all tables in it?
assuming that you have access to the If you do not have access to
although that may be a subset of the tables available in the database ( If you are only concerned with the tables that you own, not those that you have access to, you could use
Since Oracle also has a number of legacy data dictionary views-- |
|||||||||||||
|
|
Querying
|
|||||||||
|
|
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:
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. |
||||
|
|
|
Try selecting from user_tables which lists the tables owned by the current user. |
|||
|
|
|
select * from dba_tables gives all the tables of all the users only if the user with which u logged in is having the sysdba privilages. |
|||
|
|
|
try below data dictionary views
|
|||||||||||
|
|
This is the official oracle query you should use to select the tables for the current user:
|
||||
|
|
protected by Jeff Atwood♦ Dec 11 '10 at 11:36
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.
