Ano-Tech Computers
Enter keyword:

Oracle: How to show table names
Problem:
In MySQL I would use 'show tables'. How can I do the same thing in Oracle?
 
Solution:
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;
 
Discuss this solution
Did this article solve your problem? Yes No Did not apply

We welcome anyone who is willing to contribute to this public knowledge base, contact siteadmin@atc.no if you have information you would like to share. The idea is not to replace the commercial support sites, but to publish those hard-to-find solutions you've found yourself looking for over and over again.

Show all articles