Is there a way to find out when a stored procedure or table was last modified? I tried checking the properties via SQL Management Studio, but only found the creation date.
Thanks!
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can use this to find the last modified date for a stored procedure:
You can use this to find the last modified date for a table:
To find the last modified date and other info for other objects, you can query
sys.objects. http://msdn.microsoft.com/en-us/library/ms190324.aspx contains a full list of types you can search for.