vote up 5 vote down star
1

On Sql Server 2000, is there a way to find out the date and time when a stored procedure was last executed?

flag

80% accept rate

2 Answers

vote up 0 vote down check

Not without logging or tracing, I'm afraid

link|flag
vote up 4 vote down

If a stored procedure is still in the procedure cache, you can find the last time it was executed by querying the sys.dm_exec_query_stats DMV. In this example, I also cross apply to the sys.dm_exec_query_plan DMF in order to qualify the object id:

declare @proc_nm sysname

– select the procedure name here
set @proc_nm = ‘usp_test’

select s.last_execution_time
from sys.dm_exec_query_stats s
cross apply sys.dm_exec_query_plan (s.plan_handle) p
where object_name(p.objectid, db_id(’AdventureWorks’)) = @proc_nm

[Source]

link|flag
I believe Data Management Views was implemented in SqlServer 2005 and therefore not applicable to sql server 2000. – Justin Dearing Aug 3 at 16:02

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.