Find out when was a Stored Procedure Modified

Most often , when we leave the office, the things are working fine.

However, we join in the morning only to discover certain things are not working.
The build you deployed yesterday had all the things up and running.

At times , the issue can be with the back end.
Somebody modified a stored procedure last night, maybe.

If you doubt such a scenario, query below might some in handy:

use [name of the database]

SELECT name, create_date, modify_date 
FROM sys.objects
WHERE type = 'P' 
order by modify_date desc



this will give you all those Stored Procedures that have been modified since creation.

Comments

Popular posts from this blog

VS 2012: No exports were found that match the constraint : ContractName

How to Tweak the New Multi-Monitor Taskbar in Windows 8