Search
 
SCRIPT & CODE EXAMPLE
 

SQL

oracle search stored procedures for text

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

PREVIOUS NEXT
Code Example
Sql :: Row Number is sql server 
Sql :: sql server check if temp table exists 
Sql :: postgres sequence name 
Sql :: oracle add column 
Sql :: mysql text to decimal 
Sql :: created at and updated at in mysql 
Sql :: change column name mysql command line 
Sql :: sql drop view if exists 
Sql :: oracle sql log to console 
Sql :: see all users mysql 
Sql :: mysql random limit 1 
Sql :: postgresql concatenate multiple rows in group by 
Sql :: cast to date bigquery 
Sql :: change mysql password from command line 
Sql :: athena query timestamp greater than 
Sql :: postgresql change column to not null 
Sql :: find column name in database 
Sql :: mysql greater thatn a week ago 
Sql :: how to check database engine in mysql 
Sql :: what is meant by trigger in dbms 
Sql :: generate random data postgresql 
Sql :: create table mysql query 
Sql :: select from one table where not on the other 
Sql :: mysql subtract month from timestamp 
Sql :: sql copy table 
Sql :: psql human readable 
Sql :: create policy in sql 
Sql :: oracle pl/sql prevent sql injection 
Sql :: insert into table from another table mysql 
Sql :: how to move a columns location in mysql 
ADD CONTENT
Topic
Content
Source link
Name
6+3 =