Search
 
SCRIPT & CODE EXAMPLE
 

SQL

SQL find text in SP

SELECT DISTINCT
       o.name AS Object_Name,
       o.type_desc
FROM sys.sql_modules m
       INNER JOIN
       sys.objects o
         ON m.object_id = o.object_id
WHERE m.definition Like '%[ABD]%';
Comment

SQL Find text in SPs

SELECT OBJECT_NAME(id) 
    FROM SYSCOMMENTS 
    WHERE [text] LIKE '%Foo%' 
    AND OBJECTPROPERTY(id, 'IsProcedure') = 1 
    GROUP BY OBJECT_NAME(id)
Comment

PREVIOUS NEXT
Code Example
Sql :: service postgres status 
Sql :: postgresql update sequence next value 
Sql :: alter user mysql native password 
Sql :: how to install mysql ubuntu 
Sql :: port 5432 is already in use mac 
Sql :: apex execute batch job 
Sql :: find duplicates mysql column 
Sql :: sql server current date without time 
Sql :: wordpress database add admin 
Sql :: set max_allowed_packet mysql 
Sql :: rails execute sql 
Sql :: wilayah indonesia database 
Sql :: search stored procedures 
Sql :: sql drop procedure if exists 
Sql :: how to change potgress password 
Sql :: restart postgresql.service Failed to restart postgresql.service: Unit not found. 
Sql :: his is incompatible with sql_mode=only_full_group_by 
Sql :: mysql show indexes on table 
Sql :: rename table sql 
Sql :: get the list of all tables in sql server 
Sql :: oracle check table lock 
Sql :: add primary key constraint in oracle 
Sql :: best configuration for display table in sqlplus 
Sql :: mysql text type max length 
Sql :: postgresql change column to not null 
Sql :: how to give user privelege to create dblink in oracle 
Sql :: oracle alter sequence nextval 
Sql :: hibernate dialect property xml for mysql 8 
Sql :: sql server add identity column to existing table 
Sql :: liquibase update row 
ADD CONTENT
Topic
Content
Source link
Name
7+8 =