List of Stored Procedure from Table

后端 未结 7 717
隐瞒了意图╮
隐瞒了意图╮ 2020-12-03 18:50

I have a huge database with 100\'s of tables and stored procedures. Using SQL Server 2005, how can I get a list of stored procedures that are doing an insert or update opera

7条回答
  •  悲&欢浪女
    2020-12-03 19:26

    You could try exporting all of your stored procedures into a text file and then use a simple search.

    A more advanced technique would be to use a regexp search to find all SELECT FROM and INSERT FROM entries.

提交回复
热议问题