posted 2/21/2012 by Raghav Khunger
Today I was working with some Stored procedures and I was in a need where I need to know the created and modified date of stored a procedure. Following is the script which I would like to share which I used to get the desired result:
GO SELECT name, create_date, modify_date FROM sys.objects WHERE type = 'P' --AND name = 'sp_dts_getfolder' GO
Output at my screen:
What kind of email newsletter would you prefer to receive from CodeAsp.Net?18