To
start a job
In
Object Explorer, connect to an instance of Database Engine.
On
the Standard bar, click New Query.
Copy
and paste the following example into the query window and click Execute.
--
starts a job named Weekly Sales Data Backup.
USE msdb ;
GO
EXEC dbo.sp_start_job N'YOURJOBNAME' ;
GO
Comments
Post a Comment