Search
 
SCRIPT & CODE EXAMPLE
 

SQL

oracle search text in all packages

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 :: oracle search stored procedures for text 
Sql :: mysql first day of month 
Sql :: wordpress sql find and replace 
Sql :: psql filed name alter 
Sql :: change column names mssql 
Sql :: show all sequence in postgresql 
Sql :: postgres install unaccent extension 
Sql :: update with inner join 
Sql :: sql alter table add column if exists 
Sql :: oracle table statistics last analyzed 
Sql :: Job for mysql.service failed because the control process exited with error code. See "systemctl status mysql.service" and "journalctl -xe" for details. 
Sql :: mysql history command 
Sql :: ubuntu stop mysql from starting on boot 
Sql :: CREATE DATABASE db; SyntaxError: Unexpected identifier 
Sql :: sql server select top 2 of each group 
Sql :: grant schema permissions postgres 
Sql :: how to delay stored procedure execution in sql server 
Sql :: xampp mysql database not starting 
Sql :: oracle alter sequence restart start with 
Sql :: sql server reset auto increment 
Sql :: sqlite print all column names 
Sql :: sql throw error 
Sql :: mysql where in array 
Sql :: create user mysql 
Sql :: sql syntax find few columns 
Sql :: edate dax 
Sql :: moodle query first user access 
Sql :: oracle list dates between 
Sql :: how to install mysql server on centos 7 
Sql :: sql server count all tables rows 
ADD CONTENT
Topic
Content
Source link
Name
9+5 =