Home Forums Programming General Executing a SQL job from within VB RE: Executing a SQL job from within VB

  • Execute the following stored procedure just as you would any other.

    EXECUTE msdb..sp_start_job @job_name = 'your job'

    You must be a sysadmin to start a job that you do not own.

    Norman