It happens sometimes, how do i get to know when my stored procedure dropped/removed without my knowledge?
It annoys me whenever I debugs and found to know that the stored procedure doesn’t exits, which created and tested some days ago.
Is there a way to know the removed Stored Procedures in MS SQL Server?
The standard way to check if procedure exists is
Starting with MSSQL 2005 you can use [DDL trigger](http://msdn.microsoft.com/en-us/library/ms190989(SQL.90%29.aspx) to send email notification when procedure is dropped or created: