66. 根据关键字查找对应执行的存储过程

Posted on 2015-04-21 14:31  zkx4213  阅读(147)  评论(0编辑  收藏  举报

select distinct name
from sysobjects o, syscomments s
where o.id = s.id
and text like '%t_Entry%'
and o.xtype = 'P'
order by name

Copyright © 2024 zkx4213
Powered by .NET 8.0 on Kubernetes