Discussions
Categories
- 17.9K All Categories
- 3.4K Industry Applications
- 3.3K Intelligent Advisor
- 62 Insurance
- 536K On-Premises Infrastructure
- 138.2K Analytics Software
- 38.6K Application Development Software
- 5.7K Cloud Platform
- 109.4K Database Software
- 17.5K Enterprise Manager
- 8.8K Hardware
- 71.1K Infrastructure Software
- 105.2K Integration
- 41.5K Security Software
Show Tables and others objects

rober584812
Member Posts: 471 Bronze Badge
I consider it convenient to implement the Show Tables command that allows a quick query of tables and other objects in a schema.
Comments
-
Show tables:
select table_name from user_tables
show object:
select object_type, object_name from user_objects;
-
Show tables:
select table_name from user_tables
show object:
select object_type, object_name from user_objects;
Very good, but simpler would be: show tables;
-
Very good, but simpler would be: show tables;
And even more: if the show pdbs command exists, why not a show tables?