Search
 
SCRIPT & CODE EXAMPLE
 

SQL

search stored procedures

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

search stored procedures by name

select * 
from 
   sys.procedures 
where 
   name like '%name_of_proc%'
Comment

PREVIOUS NEXT
Code Example
Sql :: sql server beginning of month 
Sql :: disable foreign key constraint mysql 
Sql :: sql server read uncommitted 
Sql :: UseSqlServer no definition 
Sql :: how to get all tables in sql 
Sql :: mysql change database charset and collation 
Sql :: remove space in mysql 
Sql :: postgres add not null to existing column 
Sql :: pdo mysql insert 
Sql :: mysql add column if not exists 
Sql :: get table columns from sql 
Sql :: how to start mysql 
Sql :: mysql first day of month 
Sql :: mysql version check cmd 
Sql :: mysql add days to date 
Sql :: postgres change owner of schema 
Sql :: set database timezone mysql 
Sql :: how to remove unique key constraint in mysql 
Sql :: postgres restart id 
Sql :: mysql increment value by 1 in update 
Sql :: how to get current date in mysql 
Sql :: search column name sql 
Sql :: mysql set field unique 
Sql :: mysql dump mysql db cli 
Sql :: postgres set user as superuser 
Sql :: sqlite foreign key 
Sql :: sql current_timestamp 
Sql :: mysql date format unix timestamp 
Sql :: how to create a variable in mysql 
Sql :: sql select column names 
ADD CONTENT
Topic
Content
Source link
Name
4+8 =