use [数据库名]
 
select last_execution_time '最近一次执行时间'
 from sys.dm_exec_procedure_stats
 where type='P' 
 and database_id=db_id('[数据库名]')
 and object_id=object_id('[存储过程名]')

相关文章:

  • 2021-10-26
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-27
  • 2022-12-23
  • 2023-03-20
猜你喜欢
  • 2021-07-18
  • 2022-12-23
  • 2021-05-17
  • 2022-12-23
  • 2022-12-23
  • 2021-10-16
相关资源
相似解决方案