Search
 
SCRIPT & CODE EXAMPLE
 

SQL

oracle source code

SELECT * FROM all_source    -- or user_source or dba_source
WHERE upper(text) LIKE '%MY TEXT%'
ORDER BY owner, name, type, line;
Comment

oracle source code

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

PREVIOUS NEXT
Code Example
Sql :: oracle pl sql source 
Sql :: sql values not in another table 
Sql :: SELECT table_name FROM user_tables; 
Sql :: postgres group by 10 minute intervals 
Sql :: check mysql username and password ubuntu 
Sql :: can you update NULL in sql 
Sql :: how to delete a record from sqlite in android 
Sql :: disable trigger sql oracle 
Sql :: select index table oracle 
Sql :: mysql change collation one column 
Sql :: how to get the number of columns in a table in sql 
Sql :: date diff sql 
Sql :: drop index oracle 
Sql :: sql view where tables have same column name combine results 
Sql :: oracle trigger after connect 
Sql :: mysql limit rows 
Sql :: how to rename a database in tsql 
Sql :: create user sql server 
Sql :: update using case in mysql 
Sql :: how to find sql server agent jobs related to a database 
Sql :: find lowest number in sql 
Sql :: postgresql insert column 
Sql :: add column in sql server 
Sql :: Check user permissions on postgres database 
Sql :: mysql replace string in table 
Sql :: sql blank vs null 
Sql :: mysql search table in all databases 
Sql :: alter table add multiple columns postgresql 
Sql :: mysql record group by created date count 
Sql :: mysql get latest duplicate rows 
ADD CONTENT
Topic
Content
Source link
Name
6+1 =