“Seleccione All_source Oracle” Código de respuesta

Seleccione 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

Seleccione All_source Oracle

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

Respuestas similares a “Seleccione All_source Oracle”

Preguntas similares a “Seleccione All_source Oracle”

Más respuestas relacionadas con “Seleccione All_source Oracle” en Sql

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código