how to find all tables in oracle and packages that create them code example
Example 1: SELECT table_name FROM user_tables;
SELECT
table_name, owner
FROM
all_tables
ORDER BY
owner, table_name
Example 2: SELECT table_name FROM user_tables;
SELECT
table_name, owner
FROM
user_tables
ORDER BY
owner, table_name