Discover 12 IT-SQL and sql ideas on this Pinterest board | sql server, how to plan, microsoft sql server and more
Skip to content
Search for easy dinners, fashion, etc.
When autocomplete results are available use up and down arrows to review and enter to select. Touch device users, explore by touch or with swipe gestures.

IT-SQL

12 Pins
·
1y
jeaninegough
By
J-Dog
Related searches
a screenshot of a computer screen with some text on it

More about this Pin

Related interests

How To Use Dense_rank In Sql
Sql Stored Procedure Code
Brent Ozar Sql Tools
Postgresql Lock Modes
Matrix Power Search With Recurrence
Sql Server Vs Postgresql
Postgresql Order By Nulls
Sql Server Encryption Guide
How To Understand Binary Search
When you see “index seek” on an execution plan, that doesn’t mean SQL Server is jumping to exactly the row you’re looking for. It only means that SQL Server is seeking on the first column of the index. This is especially misleading on indexes where the first column isn’t very selective. To explain, I’ll take...
a flow diagram showing the steps in which each process is completed

More about this Pin

Related interests

Sql Query Types Diagram
Sql Query Techniques
Sql Query Types
Understanding Sql Query Execution
Understanding Sql Execution Process
Sql Query Execution Example
Sql Query Execution Plan Diagram
Sql Server Process Execution Plan
Text To Sql Query Workflow
How SQL Query works? Understanding SQL Query Execution Order for Tech Interview
an image of a computer screen showing the different types of electronic devices and their names

More about this Pin

Related interests

Sql Server
Letter Z
Compare And Contrast
Modern Love
Page Number
Screwed Up
Change My Life
Change Me
Blog Posts
SQL Server insights from Erik Darling. Want to get better at performance tuning, indexing, or query tuning? Try one of my online SQL courses.
an image of a diagram showing the different types of computers and their respective serverss

More about this Pin

Related interests

Number Tricks
Going To Work
Writing
How To Plan
While working on some DMV scripts, I came up with a lazy way to have a user definable sort order in the query that seemed like pure genius. I showed it to the team and they’d never seen anything like it before. The Situation Users like to be in control. They want to define custom...
an image of a man in red shirt with the words how to think like the ssl server engine

More about this Pin

Related interests

Things To Think About
Engineering
You’re a developer or a DBA, and you’re comfortable writing queries to get the data you need. You’re much less comfortable trying to design the right indexes for your database server. In this series of videos, you’ll learn how the SQL Server engine looks at your indexes and builds your query results. In a few...
an image of a man in red shirt with the words how to think like the ssl server engine

More about this Pin

You’re a developer or a DBA, and you’re comfortable writing queries to get the data you need. You’re much less comfortable trying to design the right indexes for your database server. In this series of videos, you’ll learn how the SQL Server engine looks at your indexes and builds your query results. In a few...
an image of a computer screen with the text, classified index scan clusterer users

More about this Pin

Related interests

Database System
Alphabetical Order
The More You Know
Questions To Ask
Long Time Ago
Make Sense
Get The Job
Physics
When you execute a query, the database server has to figure out things like: Which table to process first Which index to use on that table Whether to seek on that index or scan it Which table to process next How to join the data between those two tables When to sort the data For...
an image of a man in red shirt and glasses with the words mastering query tuning

More about this Pin

Related interests

How To Start With Sql Server
Beginner's Guide To Sql Server
How To Configure Sql Server Jobs
Best Practices For Sql Settings
How To Manage Sql Server Jobs
Sql Server Database Connection Tutorial
Virtualizing Sql Server Strategies
Sql Server 2019 Performance Tips
How To Make Sql Server Highly Available
In my free How to Think Like the Engine class, we start out by measuring query performance using logical reads. That’s the number of 8KB data pages that SQL Server has to read in order to find your query’s results. That’s the measure I use the most because generally speaking, the less data your server...
a screenshot of a computer screen with some text on it

More about this Pin

When you see “index seek” on an execution plan, that doesn’t mean SQL Server is jumping to exactly the row you’re looking for. It only means that SQL Server is seeking on the first column of the index. This is especially misleading on indexes where the first column isn’t very selective. To explain, I’ll take...
an image of a computer screen with the text, index scan noclustered users i

More about this Pin

Related interests

Stack Overflow
Find People
Lists To Make
Just Go
Let It Be
a man in a red shirt is smiling and holding his hands together with the words mastering query tuning

More about this Pin

a screenshot of a web page with the text exec user / repuptation 1

More about this Pin

Related interests

How Does Quicksort Work
Building A Query
Sql Server Query Execution Details
How To Create Database Queries
Sql Query Execution Plan
How To Create A Query In Sap
Sql Query Execution Screen
A reader posted a question for Office Hours: Hi Brent, What is your take on Hugo Kornelis’s explanation of execution plan naming. As her his explanation, estimated exec plan is simply an execution plan whereas actual execution plan = execution plan+run-time stats. Do you agree that the naming is flawed and confusing? – Yourbiggestfan I...