sqlschool.gr logo

articles

Articles of SQLschool.gr Team

Exploring FETCH API CURSOR and sp_cursorfetch

Antonios Chatzipavlis
Wednesday 16 March 2022

Overview

Δεν είναι σπάνιες οι φορές όταν κάνουμε performance tuning investigation χρησιμοποιώντας διάφορα εργαλεία όπως Profiler, sp_whoisactive, dbcc inputbuffer να συναντάμε σαν query text είτε FETCH API CURSOR είτε exec sp_cursorfetch με κάποιες παραμέτρους. Φυσικά με αυτά δεν βγάζουμε άκρη. Για αυτό στο άρθρο αυτό θα σας εξηγήσω πως μπορείτε να βγάλετε άκρη και κυρίως να δείτε το πραγματικό query που εκτελείτε πίσω από αυτά.

Explain by sample


Sample
image

Όπως βλέπουμε στην παραπάνω εικόνα έχω εκτελέσει την δημοφιλή sp_whoisactive του Adam Machanic και στο sql_text βλέπω το FETCH API CURSOR.

Αυτό όμως δεν μου δείχνει την πραγματικά εκτελείται και για να το βρω θα πρέπει να κάνω query στο sys.dm_exec_cursors DMF με παράμετρο το session id.

Το DMF αυτό μου δίνει αρκετές πληροφορίες για το cursor και μπορείτε να δείτε περισσότερα στα BOL.

Από αυτό μας ενδιαφέρει το sql_handle το οποίο χρησιμοποιώ σας παράμετρο στο αρκετά γνωστό DMV sys.dm_exec_sql_text στου οποίου τα αποτελέσματα το text field περιέχει το πραγματικό statement που εκτελείται.

All in one query

Αν τώρα όλα αυτά τα ενώσουμε μεταξύ τους τότε έχουμε το παρακάτω query που μας δίνει άμεσα τις πληροφορίες που χρειαζόμαστε.

SQL Script

select 
    creation_time
,    cursor_id
,    c.session_id
,    c.properties
,    c.creation_time
,    c.is_open
,    substring(st.text, 
              (c.statement_start_offset/2)+1, 
              ((case c.statement_end_offset 
                when -1 then datalength(st.text) 
                else c.statement_end_offset
                end - c.statement_start_offset) / 2) + 1) as statement_text
from   
    sys.dm_exec_cursors(0) as c
inner join 
    sys.dm_exec_sessions as s on c.session_id = s.session_id
cross apply 
    sys.dm_exec_sql_text(c.sql_handle) as st
go

Query Results
image

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.