Forums.ATC.no

Teknisk => Generelt teknisk => Emne startet av: ATC på 30. April 2009, 09:26 am

Tittel: Oracle: How to show table names
Skrevet av: ATC30. April 2009, 09:26 am
In MySQL I would use 'show tables'. How can I do the same thing in Oracle?
Tittel: [Solved] Oracle: How to show table names
Skrevet av: ATC30. April 2009, 09:26 am
SELECT TABLE_NAME FROM USER_TABLES;

More information about your tables is available from USER_TABLES. To see all the attributes of USER_TABLES, try:

SELECT * FROM USER_TABLES;