Pages

Saturday 1 February 2014

How SQL Server Get Stored Procedure Last Modified Date or Updated Date in SQL Server

How SQL Server Get Stored Procedure Last Modified Date or Updated Date in SQL Server 


SELECT name,   create_date, modify_date FROM sys.objects WHERE type = 'P'  








SELECT name, create_date, modify_date FROM sys.objects WHERE type = 'P' AND name like '%your procedure name%'





No comments:

Post a Comment