oracle search stored procedures for text

Solutions on MaxInterview for oracle search stored procedures for text by the best coders in the world

showing results for - "oracle search stored procedures for text"
Sebastián
18 Mar 2019
1SELECT * FROM all_source    -- or user_source or dba_source
2WHERE upper(text) LIKE '%MY TEXT%'
3	AND TYPE IN ('FUNCTION','PROCEDURE','PACKAGE')
4ORDER BY owner, name, type, line;