Search
Calendar
June 2025
S M T W T F S
« May    
1234567
891011121314
15161718192021
22232425262728
2930  
Archives

PostHeaderIcon Get the list of tables in Oracle

Case: you need the list of all tables in an Oracle DB.

Solution: run this query:

select * from user_objects where object_type = 'TABLE';

You can use a similar way to filter on table names, or get other types object such us triggers, procedures and indexes.

Leave a Reply