sqlschool.gr logo

articles

Articles of SQLschool.gr Team

How to know the execution percentage and completion time for a task

Antonios Chatzipavlis
Tuesday 06 October 2015

Καθημερινά ένας DBA εκτελεί πολλές εργασίες που μπορεί να είναι από ένα απλό backup/restore μέχρι κάποιο index rebuild/reorganize ή ένα DBCC CHECKDB.

Είναι αρκετά περίπλοκο και δύσκολο εκ των προτέρων να γνωρίζει ακριβώς πόσο χρόνο θα χρειαστούν τέτοιου είδους εργασίες για να ολοκληρωθούν. Παρόλα αυτά όμως είναι σε θέση να γνωρίζει πόσο χρόνο θα χρειαστούν μέχρι να ολοκληρωθούν εφόσον αυτές ξεκινήσουν.

Αυτό είναι μια συνήθης ερώτηση που μου γίνεται και η απάντηση μου είναι η παρακάτω καθώς και εγώ την χρησιμοποιώ συνέχεια.

Πριν προχωρήσω θα πρέπει εξαρχής να ξεκαθαρίσω ότι η τελική λύση μπορεί να εκτελεστεί σε SQL Server 2008 και πάνω.

Από τον SQL Server 2005 και μετά είναι γνωστό ότι στο SQL Server έχουν προστεθεί τα Dynamic Management Views (DMV).

Η χρήση του πλέον είναι μεγάλη καθώς οι πληροφορίες που αυτά περιέχουν είναι πολύ σημαντικές.

Επίσης πρέπει να επισημανθεί ότι οι χρονοβόρες εργασίες δεν είναι τα DML statements αλλά τα παρακάτω
  • ALTER INDEX REORGANIZE
  • AUTO_SHRINK option with ALTER DATABASE
  • BACKUP DATABASE
  • DBCC CHECKDB
  • DBCC CHECKFILEGROUP
  • DBCC CHECKTABLE
  • DBCC INDEXDEFRAG
  • DBCC SHRINKDATABASE
  • DBCC SHRINKFILE
  • RECOVERY
  • RESTORE DATABASE
  • ROLLBACK
  • TDE ENCRYPTION
Για όλα τα παραπάνω μπορώ να ξέρω ανά πάσα στιγμή το ποσοστό ολοκλήρωσης τους και το πότε θα τελειώσουν. Και επειδή πολλοί θα σπεύσουν να μιλήσουν για την ακρίβεια των αποτελεσμάτων θα πρέπει να ενημερώσω ότι μπορεί να υπάρξει μια μικρή απόκλιση η οποία όμως δεν μας δημιουργεί πρόβλημα.

Επίσης θα ζητήσω από όλους να διαβάσουν για τα DMV που αναφέρονται στο query καθώς έτσι θα καταλάβουν τι ακριβώς αυτά μας δίνουν αλλά και το τι επιστέφει το query αυτό.



SELECT    SUBSTRING ( t.[text],(r.statement_start_offset + 2)/2, 
                        case r.statement_end_offset 
                        when -1 then (datalength(t.text))
                        else ((r.statement_end_offset - r.statement_start_offset) + 2)/2 
                        end) as exec_command
,        r.percent_complete
,        DATEADD(MILLISECOND,r.estimated_completion_time,CURRENT_TIMESTAMP) as estimated_completion_time  
,        r.session_id
,        s.[host_name]
,        c.client_net_address
,        s.login_name
,        c.connect_time
,        s.last_request_start_time
FROM sys.dm_exec_requests AS r
CROSS APPLY sys.dm_exec_sql_text(r.[sql_handle]) as t
INNER JOIN sys.dm_exec_sessions as s on s.session_id=r.session_id
INNER JOIN sys.dm_exec_connections as c on c.session_id=r.session_id
WHERE r.percent_complete <> 0;

//antonch

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.

Episode

First look: SQL Database in Microsoft Fabric

image

More Episodes...

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.