以编程方式执行维护计划

以编程方式执行维护计划

本文介绍了SQL Server:以编程方式执行维护计划的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有没有办法以编程方式执行(启动)SQL Server 维护计划?我们有一个 Windows 服务,它每晚运行并使用大量数据更新数据库,一旦完成,我们希望在数据库中触发维护计划以开始运行.

Is there any way to programmatically execute (start) a SQL Server maintenance plan? We have a windows service that runs nightly and updates the DB with lots of data, once that is finished we would like to trigger a maintenance plan in the DB to start running.

推荐答案

您可以通过 sp_start_job:

use msdb;
go
exec dbo.sp_start_job N'job_name' ;
go

这篇关于SQL Server:以编程方式执行维护计划的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-02 00:31