how to list all tables in oracle code example
Example 1: show all tables in oracle
SELECT * FROM USER_TABLES; ' Tables from your schema
SELECT * FROM ALL_TABLES; ' Tables from schemas you can access
SELECT * FROM DBA_TABLES; ' All Tables
Example 2: show all tables in oracle
SELECT * FROM ALL_TABLES;
Example 3: oracle all tables
-- NOTE: for Oracle ONLY
select *
from all_tables;