Interested in a private company training? Request it here.
In a course like this many different topics are discussed, so we start this training by briefly discussing the different topics and show how they relate to each other.
Sometimes people wonder if their SQL Server needs more CPU power. In this module we see how SQL Server schedules queries to workers for running them on a thread. A very important concept is looking into wait statistics, where we basically learn to ask SQL Server what it's waiting upon.
SQL Server stores its data on disk. In this module we discuss how data for regular data structures is stored, how the data can be spread over multiple disks and we discuss common performance pitfalls people encounter when they setup a SQL Server database.
SQL Server cannot run queries on data stored on disk. It must first be loaded into main memory before it can be used. But how does SQL Server decide how long to cache data in memory, how can we inspect what data is cached right now, and what else besides data is kept in memory? These are the questions we answer in this module.
When developing the tables within a database we have to take care as well. In this module we discuss the impact that data types have on the size of a row, and bigger rows often result in slower queries. Another thing to worry about are the implicit data type conversions, which can cause SQL Server a lot of extra work, or can even result in SQL Server not being able to use some indexes.
The way data is stored on disk and in memory has a huge impact on the performance of both read operations as well as operations that modify the data. In SQL Server, indexes determine how you store your tables. This module explains how the 3 most common indexes work: Heaps, Clustered index and Nonclustered indexes.
In this module you dive deeper in the way clustered on nonclustered indexes work. You see how statistics help decide which index to use, and why you might want to filter your indexes and statistics. Finally, you will learn how indexing a view can help in computing subtotals much faster.
Having an index is one thing, using the index is another story: How can we see which indexes SQL Server uses and how it's using them? Execution plans are the answer to that question. We discuss in this part of the training how to get execution plans and how to analyze them.
The SQL Server Query Store logs every query executed, and helps to get insights on which queries are slow, how frequently they run, how many different execution plans they use, and much more.
This module combines the skills we gained in the two previous modules. We see how changing queries, indexes and constraints has an influence on the execution plan ad performance of a query.
A database must store data in a consistent way. But if everybody can change all the data in parallel, we lose transactional consistency. This module discuss how SQL Server provides us with some options for allowing sessions in parallel to access the same data yet keeping this data transactional consistent.
To apply performance optimizations in practice we must first monitor the SQL Server to identify the types of performance problems we have. But ideally we start monitor the SQL Server before problems arrive. This way we establish a baseline against which we can compare the monitored values when things start to go wrong. In this module we discuss different types of monitoring tools in SQL Server.
The main usage of ColumnStore indexes is to improve query performance for data warehouses and data marts workloads. This chapter describes how ColumnStore indexes store data in a columnar format instead of the row-based storage that is used by 'classic' tables and indexes in SQL Server. Then you will learn how to create columnstore indexes and strategies for using them in On-Premise and Azure SQL Databases.
In-Memory OLTP can significantly improve the performance of transaction processing, data ingestion and data load, and transient data scenarios in SQL Server on-premise and Azure SQL Databases. In-Memory OLTP improves performance of transaction processing tables by removing lock and latch contention between concurrently executing transactions.
This course covers advanced SQL Server performance tuning and optimization techniques, providing participants with the skills to enhance the efficiency and responsiveness of SQL Server environments. It offers an in-depth understanding of SQL Server's internal architecture, essential for effective performance tuning.
The course covers both SQL Server on-premises and cloud-based solutions such as Azure SQL Databases and Azure Managed Instances.
This course is targeted towards database administrators, developers, and anyone responsible for managing SQL Server databases seeking to enhance their skills in performance tuning and optimization. Participants should have a basic understanding of SQL Server fundamentals, including database design, SQL querying, and administration concepts.