sql agent job schedule no longer runs

  • Hi all,

    I disabled several jobs using this code from http://www.mssqltips.com/tip.asp?tip=1400

    sql server 2005

    -- disable

    UPDATE MSDB.dbo.sysjobs

    SET Enabled = 0

    WHERE Enabled = 1;

    -- enable

    UPDATE MSDB.dbo.sysjobs

    SET Enabled = 1

    WHERE Enabled = 0;

    I re enabled the jobs with the next part and now the scheduled task do not run. Any ideas? the job runs if I execute them manually just not when scheduled. Agent is running

    many thanks

  • Did you check error log?

    [font="Tahoma"]
    --SQLFRNDZ[/url]
    [/font]

  • yes no errors.

  • restarting sql agent seems to fix the issue.

  • Right click on the job and enable it or refresh it.

    Regards,

    Pavan Srirangam.

    [font="Tahoma"]
    --SQLFRNDZ[/url]
    [/font]

Viewing 5 posts - 1 through 4 (of 4 total)

You must be logged in to reply to this topic. Login to reply