select * from sysobjects where type ='p' order by crdate desc
or
--->>Getting Specified procedure Details
SELECT name, create_date, modify_date
FROM sys.objects
WHERE type = 'P'
AND name = 'SP_NAME'
or
--->>Getting Specified procedure Details
SELECT name, create_date, modify_date
FROM sys.objects
WHERE type = 'P'
AND name = 'SP_NAME'
No comments:
Post a Comment