Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Date of the SP last change
Message
General information
Forum:
Microsoft SQL Server
Category:
Stored procedures, Triggers, UDFs
Miscellaneous
Thread ID:
01675875
Message ID:
01675876
Views:
78
This message has been marked as the solution to the initial question of the thread.
>Hi,
>
>Is it possible to find out when a SP was last updated (at design time)?
>
>I have a case where I was working on the same SP but in a couple of Databases. I want to find where which one is the latest update.
>
>TIA
SELECT *
FROM sys.objects
WHERE type = 'P'
ORDER BY modify_date DESC
Against Stupidity the Gods themselves Contend in Vain - Johann Christoph Friedrich von Schiller
The only thing normal about database guys is their tables.
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform