200分求一個俺幾年來沒法解決的問題:請問如何對SQLServer2000進行針對存儲過程的文本搜索?
某個數據庫中有很多存儲過程,其中有幾個存儲過程有特定文本,比如說“print 'forgot '”,但具體是哪幾個不確定,請問有辦法針對存儲過程中的文本進行全文搜索嗎?請告訴我具體的步驟,謝謝!
------解决方案--------------------将所有的存储过程生成SQL脚本,放在记事本中,然后查找.
------解决方案--------------------select distinct o.name from syscomments c,sysobjects o
where c.id=o.id
and o.xtype= 'P '
and c.text like '%print ' 'forgot ' '% '