Will a SQL Server Job skip a scheduled run if it is already running?
Asked Answered
P

3

79

If you schedule a SQL Server job to run every X number of minutes, and it does not finish the previous call before the # of minutes is up, will it skip the run since it is already running, or will it run two instances of the job doing the same steps?

Poulter answered 14/5, 2009 at 18:47 Comment(0)
S
97

The SQL Server agent checks whether the job is already running before starting a new iteration. If you have long running job and its schedule comes up, it would be skipped until the next interval.

You can try this for yourself. If you try to start a job that's already running, you will get an error to that effect.

Squirmy answered 14/5, 2009 at 19:11 Comment(3)
Awesome, that's exactly what I wanted to know. I have an e-mail checker that sometimes takes a while to download large e-mails. Because it runs every minute, it's -very- important that a second instance of the job isn't started if the first one hasn't completed yet.Susy
Is there any way to achieve this, I mean avoid the skip and start another instance of the job? Or just could be done creating another SQL Job? ThanksCrumpton
@Jose, question. I don't want SQL server saying it's a fault or error. Just skipped. how can I ensure that is so? ThanksPrevot
A
5

I'm pretty sure it will skip it if it is running.

Arbogast answered 14/5, 2009 at 18:49 Comment(0)
M
2

Which version of SQL Server are you using? This seems like a pretty easy thing to test. Set up a job with a WAITFOR in it that inserts a single row into a table and set up the job to run twice in quick succession (shorter than the WAITFOR DELAY).

When running such a test in SQL Server 2005 it skipped the run that was overlapped.

Manvel answered 14/5, 2009 at 19:15 Comment(1)
I was contemplating doing this- but it seemed easier to google it and.. voilaKrieg

© 2022 - 2025 — McMap. All rights reserved.