Search This Blog

Wednesday, February 26, 2025

Search String Inside Oracle Database Objects SQL

SELECT owner, name, type, line, text 
FROM dba_source
WHERE instr(UPPER(text), UPPER('string')) > 0;

No comments:

Post a Comment

Create a Form Using Python for Save Data into Excel like a Database

#Download Pyhton from here https://www.python.org/downloads/  #Download Python: #Click the “Download Python 3.x.x” button (the latest versio...