Last active
September 16, 2019 05:21
-
-
Save MarioBinder/8aaa4c95c7b0d64a2503ae7d3a30748c to your computer and use it in GitHub Desktop.
select last change date of procedures
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --select last change date of procedures. | |
| SELECT name, create_date, modify_date | |
| FROM sys.objects | |
| WHERE type = 'P' | |
| ORDER BY modify_date DESC |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment