Hi
Identify the list of all tables ( user_tables) which are not used in any of the Stored procedure ( user_source ).
By Stored proc I mean Package, Procedure,Fucntions.
Below query is not working:
select * from user_tables A where not exists
( select 1 from user_source B where A.table_name like upper('%B.text%') );