I know it is possible to use:
SELECT DISTINCT(table_name)
FROM all_tab_cols
Would there be a better way in Oracle to show table, i.e. MySQL's show table; command.
|
|
|
If you require full structure you may use
see more syntax from Reference |
|||||||
|
|
Try |
|||
|
|
|
You can do
To get basic stuff. To get just the tablenames:
|
|||||||
|
|
Off course this depends on your use. Do you need the information in a program or do you want to have a look at the table structure yourself? Many tools will give you a view of the table structure including: PLSQL developer, Toad for Oracle, SQLDeveloper. If you want to use the table structure in a query better resort to the Oracle data dictionary views (user_..., all_..., dba_...) |
|||
|
|