On Sql Server 2000, is there a way to find out the date and time when a stored procedure was last executed?
|
1
|
|
|
|
|
|
Not without logging or tracing, I'm afraid |
||
|
|
|
|
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:
|
||
|
