how am i just learning this?

Uncategorized 2 March 2011 | Comments Off on how am i just learning this?

you can find out the last modified date of a table or a stored procedure!

select name, modify_date

from sys.tables

order by modify_date desc

select name, modify_date

from sys.procedures

order by modify_date desc

Comments are closed.