How to find text in oracle stored procedure

USE : user_source table
select  * from user_source where type = ‘PROCEDURE’ and lower(text) like lower(‘%text%’);

Leave a Reply