How to show tables in Oracle Database
When working with databases, you often need to check tables in your databases, access certain tables or list all existing tables. Database management systems provide means to perform these tasks easily.
For example, MySQL has the SHOW TABLES command; however, other DBMSs do not support that function directly. They have alternatives, though. SQL Server offers its catalog views, and Oracle shows tables when you query its data dictionaries.
This article will review various options to query Oracle to show database tables: