在 SQL Server 上计划运行存储过程

2021-12-10 00:00:00 tsql sql-server

是否可以通过某种方式设置 Microsoft SQL Server 来定期运行存储过程?

Is it possible to set up somehow Microsoft SQL Server to run a stored procedure on regular basis?

推荐答案

是的,在 MS SQL Server 中,您可以创建计划作业.在 SQL Management Studio 中,导航到服务器,然后展开 SQL Server Agent 项,最后展开 Jobs 文件夹以查看、编辑、添加计划作业.

Yes, in MS SQL Server, you can create scheduled jobs. In SQL Management Studio, navigate to the server, then expand the SQL Server Agent item, and finally the Jobs folder to view, edit, add scheduled jobs.

相关文章