Answers for "oracle all_source"

SQL
5

oracle all source

SELECT * FROM all_source    -- or user_source or dba_source
WHERE upper(text) LIKE '%MY TEXT%'
ORDER BY owner, name, type, line;
Posted by: Guest on May-02-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language