码迷,mamicode.com
首页 > 其他好文 > 详细

查询存储过程里面的含有的关键字

时间:2016-11-17 13:25:44      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:module   procedure   sys   ini   substr   order by   cts   esc   modify   

由于在公司服务器上在某个时段查询某个sql执行比较慢,然后查到了某个sql里面含有in,造成数据库服务器经常超时,又不想一条一条的看,然后写了一个方法

 

CREATE Procedure GetKey @Key Varchar(200)=‘‘,@Type VarChar(10)=‘and‘
As
Set NoCount On
Declare @S Varchar(400),@If Varchar(400)
Set @S=‘Select ‘‘SPText ‘‘ as SH,Object_Name(S.[Object_ID]) as Obj,O.Modify_Date‘+Char(13)
Set @S=@S+‘ From Sys.SQL_Modules S Join Sys.Objects O On S.Object_ID=O.Object_ID‘+Char(13)
Set @If=‘‘
While CharIndex(‘..‘,@Key)>0
Begin
Set @If=@If+‘ ‘+@Type+‘ S.[Definition] Like ‘‘%‘+SubString(@Key,1,CharIndex(‘..‘,@Key)-1)+‘%‘‘‘+Char(13)
Set @Key=SubString(@Key,CharIndex(‘..‘,@Key)+2,80)
End
If @Key>‘‘ Set @If=@If+‘ ‘+@Type+‘ S.[Definition] Like ‘‘%‘+@Key+‘%‘‘‘+Char(13)
If @If>‘‘ Set @If=‘ Where ‘+SubString(@If,Case When @Type=‘and‘ Then 5 Else 4 End,400)
Exec(@S+@If+‘ Order By 3 Desc‘) 

查询存储过程里面的含有的关键字

标签:module   procedure   sys   ini   substr   order by   cts   esc   modify   

原文地址:http://www.cnblogs.com/zhian/p/6073273.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!