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 :: python sqlite3 create table if not exists 
Sql :: postgres delete from where date is greater than specific date 
Sql :: oracle search source code 
Sql :: mysql 1 day ago 
Sql :: find table from column name in sql 
Sql :: postgres set sequence value to max id 
Sql :: sql auto update dupdated_at 
Sql :: postgres get month name from date 
Sql :: crontab every month 
Sql :: not today mysql 
Sql :: oracle user last connected 
Sql :: tsql update datetime 
Sql :: rror: ER_NOT_SUPPORTED_AUTH_MODE: Client does not support authentication protocol requested by server; consider upgrading MySQL client 
Sql :: change varchar length mysql 
Sql :: mysql text type max length 
Sql :: how to list function in psql 
Sql :: command line mysql import 
Sql :: sql exclude duplicates and find even id 
Sql :: mysql remove last empty newline 
Sql :: show structure of table in sql 
Sql :: sql server 2012 query history 
Sql :: how to give access to database in postgresql server to another user 
Sql :: starting mysql service from mac 
Sql :: Mysql Workbench takes very long time to execute the first query 
Sql :: postgres check timezone 
Sql :: rename table in mysql 
Sql :: mysqldump csv 
Sql :: remove password from root mysql 
Sql :: search query in mysql 
Sql :: truncate table 
ADD CONTENT
Topic
Content
Source link
Name
1+6 =