本文介绍了如何在作业完成时更新本地表格中的值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

SQL Server 2008,我需要在执行服务的所有任务完成执行作业后立即将一些值更新到数据库中。换句话说,我想做一些像工作完成时状态直接改变这个状态的东西。我认为做存储过程就像:Update(表名)Set(Field)= 1),但我不知道如何存储作业完成时执行的程序

SQL Server 2008 , I need to update some values into Database as soon as all the tasks of Executing Service have finished executing there jobs. In other words, I want do something like status when the job finished directly change this status .i think that doing stored procedure like: Update (Table Name ) Set ( Field ) = 1 ) ,but i don't Know how make the stored procedure executed when the job finished

推荐答案


这篇关于如何在作业完成时更新本地表格中的值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-01 21:10