To search Stored Procedure Create Dated and Modified Date

Sabarimahesh
Posted by Sabarimahesh under Sql Server category on | Points: 40 | Views : 1675
By using this Syntax


SELECT Name, Create_Date, Modify_Date
FROM sys.objects
WHERE type = 'P'
AND name = 'Sp_check'

Comments or Responses

Login to post response