Answers for "select all_source oracle"

SQL
6

select all_source oracle

select *
from   all_source
where  lower(text) like lower('%Some source%');
Posted by: Guest on March-15-2021
5

select all_source oracle

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