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
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.