To get the names of the latest altered storedprocedures in SQL.
following is the query: declare @date1 datetime set @date1 = '1-sep-2008'
select specific_name,last_altered,created from information_schema.routines where datediff(day,@date1, last_altered) > 0 or datediff(day,@date1, created) > 0
No comments:
Post a Comment