Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 401107
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T17:00:13+00:00 2026-05-12T17:00:13+00:00

I have just had a scheduled SQL Server job run for longer than normal,

  • 0

I have just had a scheduled SQL Server job run for longer than normal, and I could really have done with having set a timeout to stop it after a certain length of time.

I might be being a bit blind on this, but I can’t seem to find a way of setting a timeout for a job. Does anyone know the way to do it?

Thanks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-12T17:00:14+00:00Added an answer on May 12, 2026 at 5:00 pm

    We do something like the code below as part of a nightly job processing subsystem – it is more complicated than this actually in reality; for example we are processing multiple interdependent sets of jobs, and read in job names and timeout values from configuration tables – but this captures the idea:

        DECLARE @JobToRun NVARCHAR(128) = 'My Agent Job'
    DECLARE @dtStart DATETIME = GETDATE(), @dtCurr DATETIME
    DECLARE @ExecutionStatus INT, @LastRunOutcome INT, @MaxTimeExceeded BIT = 0
    DECLARE @TimeoutMinutes INT = 180 
    
    EXEC msdb.dbo.sp_start_job @JobToRun
    SET @dtCurr = GETDATE()
    WHILE 1=1
    BEGIN
        WAITFOR DELAY '00:00:10'
        SELECT @ExecutionStatus=current_execution_status, @LastRunOutcome=last_run_outcome 
        FROM OPENQUERY(LocalServer, 'set fmtonly off; exec msdb.dbo.sp_help_job') where [name] = @JobToRun
        IF @ExecutionStatus <> 4
        BEGIN -- job is running or finishing (not idle)
            SET @dtCurr=GETDATE()
            IF DATEDIFF(mi, @dtStart, @dtCurr) > @TimeoutMinutes
            BEGIN   
                EXEC msdb.dbo.sp_stop_job @job_name=@JobToRun                   
                -- could log info, raise error, send email etc here
            END
            ELSE
            BEGIN
                CONTINUE
            END
        END
        IF @LastRunOutcome = 1  -- the job just finished with success flag
        BEGIN
            -- job succeeded, do whatever is needed here
            print 'job succeeded'                                   
        END
    
    END
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Have had to write my first proper multithreaded coded recently, and realised just how
just a quick question: I am a CS undergrad and have only had experience
I have just inherited a server application, however it seems that the only copy
I have just set up cruise control.net on our build server, and I am
Have just started using Google Chrome , and noticed in parts of our site,
Have just started using Visual Studio Professional's built-in unit testing features, which as I
Have just started playing with ASP.NET MVC and have stumbled over the following situation.
I have just installed C# for the first time, and at first glance it
I have just got a MacBook Pro and have been using it (+Fusion) to
I have just started using silverlight 2 beta and cannot find how to or

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.