What stored procedure or function in SQL SERVER to find a keyword is located

 

USE [MYDB] go

 SELECT * FROM INFORMATION_SCHEMA.ROUTINES WHERE routine_type='PROCEDURE' AND routine_definition LIKE '%关键词 %'

 

 

 

Reproduced in: https: //www.cnblogs.com/majinyu/p/3382922.html

Guess you like

Origin blog.csdn.net/weixin_34099526/article/details/93665996