“selecione All_source Oracle” Respostas de código

selecione 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;
VasteMonde

selecione All_source Oracle

select *
from   all_source
where  lower(text) like lower('%Some source%');
Wrong Willet

Respostas semelhantes a “selecione All_source Oracle”

Perguntas semelhantes a “selecione All_source Oracle”

Mais respostas relacionadas para “selecione All_source Oracle” em Sql

Procure respostas de código populares por idioma

Procurar outros idiomas de código