Forums.ATC.no
Teknisk => Generelt teknisk => Emne startet av: ATC på 30. April 2009, 09:26 am
-
In MySQL I would use 'show tables'. How can I do the same thing in Oracle?
-
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;