如果需要查找某个存储过程或触发器中是否含有某段文本(比如:你想知道有哪些存储过程操作了某个表)
可以这么写
select name
from sysobjects o, syscomments s
where o.id = s.id
and text like ‘%text%‘
原文地址:https://www.cnblogs.com/songr/p/9020081.html
时间: 2024-10-10 09:46:05
如果需要查找某个存储过程或触发器中是否含有某段文本(比如:你想知道有哪些存储过程操作了某个表)
可以这么写
select name
from sysobjects o, syscomments s
where o.id = s.id
and text like ‘%text%‘
原文地址:https://www.cnblogs.com/songr/p/9020081.html