How to run a stored procedure every day in SQL Server Express Edition?

前端 未结 11 1513
野的像风
野的像风 2020-11-28 08:06

How is it possible to run a stored procedure at a particular time every day in SQL Server Express Edition?

Notes:

  • This is needed to truncate an audit t
11条回答
  •  无人及你
    2020-11-28 08:45

    Another approach to scheduling in SQL Express is to use Service Broker Conversation Timers. To run a stored procedure periodically, which you can use to bootstrap a custom scheduler.

    See eg Scheduling Jobs in SQL Server Express

提交回复
热议问题