I have a huge database with 100's of tables and stored procedures. Using SQL serve 2005 How can i get the list of Stored procedures that are doing a insert or update operation on a table.
|
feedback
|
This will give you a list of all stored procedure contents with INSERT or UPDATE in them for a particular table (you can obviously tweak the query to suit). Also longer procedures will be broken across multiple rows in the returned recordset so you may need to do a bit of manual sifting through the results. Edit: Tweaked query to return SP name as well. Also, note the above query will return any UDFs as well as SPs. | |||||||||
feedback
|
|
| |||
|
feedback
|
|
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. | |||
|
feedback
|
|
This seems to work:
| |||
|
feedback
|
|
If you download sp_search_code from Vyaskn's website it will allow you to find any text within your database objects. http://vyaskn.tripod.com/sql_server_search_stored_procedure_code.htm | |||
|
feedback
|
|
| |||||||||||||
feedback
|
This link was used as a resource for the SP search. | |||
|
feedback
|