Click here to Skip to main content
15,889,266 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
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
Posted

1 solution

Right after all the tasks of executing service have finished executing there jobs, you can call the stored procedure through which you can update some value in the table. This will be the very last step of the executing service.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900