Quantcast
Channel: Answers by "Paul Ward"
Viewing all articles
Browse latest Browse all 6

Answer by Paul Ward

$
0
0

This will get you half way there:

Use MyDatabase
Go

select b.name, a.last_execution_time
from sys.dm_exec_procedure_stats a 
inner join sys.objects b on a.object_id = b.object_id 
where DB_NAME(a.database_ID) = 'MyDatabase'

It will tell you the last time a stored proc was executed.

As for who ran it, as far as I know that is not recorded. You could use profiler to recored this, but i wouldn't do that on production server.


Viewing all articles
Browse latest Browse all 6

Trending Articles