Is there any query to find all tables in oracle that contains a particular text?
similar to UNIX syntax grep -rls 'text'
I have used the query select * from user_source where text like '%text%';
to find the text in packages.
Is there any query to find all tables in oracle that contains a particular text?
similar to UNIX syntax grep -rls 'text'
I have used the query select * from user_source where text like '%text%';
to find the text in packages.