Reputation: 145
I have SQL
job that runs every night which does various inserts/updates/deletes
. The job contains 40 steps which mainly execute stored procedures.
It's been running fine up until a week ago when suddenly the run time went up from 2.5 hours
to over 5 hours
, sometimes even 8,9,10!
Could one you please give me any pointers?
Upvotes: 3
Views: 7170
Reputation: 6534
First of all let me recommend you a valuable resource on Simple-Talk site. Is a detailed methodology of how to troubleshoot performance issues on SQL Server.
Does the insert you say was carried out was a huge bulk insert that could affect performance? Maybe if it was a huge load the query execution plans could be different and you need to re-tune your table structure, indexes, etc.
If the run time suddenly
changed and no changes where done in the queries or your database structure then I would ask myself several questions:
And there is lot more to check, but before going deeper I would check that no external (non sql server related) was the reason of the delay on the process execution.
Upvotes: 3