sqlschool.gr logo

articles

Articles of SQLschool.gr Team

Understanding the jobs schedule in your instance

Antonios Chatzipavlis
Sunday 31 October 2021

Overview

Όλοι χρησιμοποιούμε το SQL Agent με σκοπό να προγραμματίσουμε διάφορες εργασίες που θέλουμε να εκτελούνται στο instance μας. Αυτό όμως που πρέπει να προσέξουμε είναι το πότε χρονικά θα βάλουμε κάθε μια να εκτελείται καθώς είναι σύνηθες φαινόμενο όλες να ξεκινάνε την ίδια ώρα. Δυστυχώς δεν υπάρχει κάποιο UI που να βοηθάει σε αυτό και για αυτό σας δίνω μια εκδοχή αυτού που χρησιμοποιώ για να μπορώ να έχω μια καλύτερη εικόνα των jobs και του προγραμματισμού τους.

My simple approach

Αυτό που κάνω είναι απλά να διαβάζω το ιστορικό των εκτελέσεων των job για τις τελευταίες 30 ημέρες με το παρακάτω query και επειδή θέλω να έχω ένα καλύτερο οπτικό αποτέλεσμα έχω φτιάξει και ένα απλό SSRS report το οποίο μπορείτε να κάνετε download και απλά να το βάλετε στα SSMS Reports ακολουθώντας τις οδηγίες που υπάρχουν στο readme.txt που θα βρείτε στο downloaded file.

Το τελικό αποτέλεσμα είναι απλό αλλά βοηθάει στο να καταλάβουμε τον προγραμματισμό των εργασιών μας.


SSMS Report View
image

SQL Script

SELECT 
        j.name as job_name
    ,    msdb.dbo.agent_datetime(h.run_date,h.run_time) as run_start_date_time
    ,    DATEADD( SECOND
                ,DATEDIFF(
                          SECOND
                         ,'19000101'
                         ,CAST(msdb.dbo.agent_datetime('19000101', 
                                                        RIGHT('000000'+cast (h.run_duration as varchar),6)) as time(0)))
                ,msdb.dbo.agent_datetime(h.run_date,h.run_time)) as run_end_date_time
    ,    DATEDIFF(SECOND,'19000101',CAST(msdb.dbo.agent_datetime('19000101', RIGHT('000000'+cast (h.run_duration as varchar),6)) as time(0))) as duration_sec
FROM    
    msdb.dbo.sysjobhistory as h
INNER JOIN    
    msdb.dbo.sysjobs as j on j.job_id = h.job_id
WHERE    
    h.run_date >= CONVERT(int,CONVERT(char(8),DATEADD(DAY,-30,GETDATE()),112))
AND    h.run_status = 1
AND    h.step_id = 0
ORDER BY
    run_start_date_time DESC

Summary

Με την εικόνα αυτή στα χέρια πλέον είμαι σε θέση να επιλέγω καλύτερα το προγραμματισμό των job αποφεύγοντας να την εκτέλεση τους την ίδια ώρα

Antonios Chatzipavlis

Antonios Chatzipavlis

Antonios is a Data Solutions Consultant and Trainer. He has been working in IT since 1988. In his career, he has worked as senior developer, IT Manager, Solutions Architect and IT Consultant. Since 1995 he has been devoted on new technologies and software development tools, mainly by Microsoft, either by training company staff and colleagues or assisting them in design, development and implementation as a consultant or chief developer. He has focused in Databases and Data Science since 1995. He specialized in Microsoft SQL Server since version 6.0 in areas like SQL Server Internals, Database Design and Development, Business Intelligence and in 2010 he has started working with Azure Data Platform, NoSQL databases, Big Data Technologies and Machine Learning. He is an active member of many IT communities in Greece, answering colleagues' questions and writing articles in his web site. He is the owner of SQLschool.gr which is a community portal with a lot of information about Microsoft SQL Server. He has been a Microsoft Certified Trainer (MCT) since 2000. Microsoft honored him as MVP on Data Platform due to his activities in SQL Server since 2010. He holds a large number of Microsoft Certifications and Microsoft SQL Server Certifications since version 6.5.

Tip

What's New in SQL Server 2022 - Episodes

More Tips...

Become a member

If you want to receive updates from us become a member to our community.

Connect

Explore

Learn


sqlschool.gr © 2010-2024 All rights reserved

This site uses cookies for operational and analytics purposes only. By continuing to browse this site, you agree to their use.