Search icon CANCEL
Subscription
0
Cart icon
Cart
Close icon
You have no products in your basket yet
Save more on your purchases!
Savings automatically calculated. No voucher code required
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Learn T-SQL Querying

You're reading from  Learn T-SQL Querying

Product type Book
Published in May 2019
Publisher Packt
ISBN-13 9781789348811
Pages 484 pages
Edition 1st Edition
Languages
Authors (2):
Pedro Lopes Pedro Lopes
Profile icon Pedro Lopes
Pam Lahoud Pam Lahoud
Profile icon Pam Lahoud
View More author details
Toc

Table of Contents (18) Chapters close

Preface 1. Section 1: Query Processing Fundamentals
2. Anatomy of a Query 3. Understanding Query Processing 4. Mechanics of the Query Optimizer 5. Section 2: Dos and Donts of T-SQL
6. Exploring Query Execution Plans 7. Writing Elegant T-SQL Queries 8. Easily-Identified T-SQL Anti-Patterns 9. Discovering T-SQL Anti-Patterns in Depth 10. Section 3: Assemble Your Query Troubleshooting Toolbox
11. Building Diagnostic Queries Using DMVs and DMFs 12. Building XEvent Profiler Traces 13. Comparative Analysis of Query Plans 14. Tracking Performance History with Query Store 15. Troubleshooting Live Queries 16. Managing Optimizer Changes with the Query Tuning Assistant 17. Other Books You May Enjoy

Using Live Query Statistics

To meet the need to analyze a query execution plan while the query is executing, Live Query Statistics (LQS) was introduced with the SQL Server 2016 release of SSMS, adding rich visuals by animating the in-flight execution plan to allow more immediate and precise identification of hot spots in a plan during query execution.

To see LQS in action, open a new query window in SSMS, in which we can use the following example query from Chapter 3, Mechanics of the Query Optimizer. This is a previously identified long-running query that I'm tasked to troubleshoot and tune:

SELECT e.[BusinessEntityID], p.[Title], p.[FirstName],p.[MiddleName],
p.[LastName], p.[Suffix], e.[JobTitle],
pp.[PhoneNumber], pnt.[Name] AS [PhoneNumberType],
ea.[EmailAddress], p.[EmailPromotion], a.[AddressLine1],
a.[AddressLine2], a.[City], sp.[Name] AS ...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $15.99/month. Cancel anytime