Awarded Friend of Redgate – 2019
Friend of Redgate – 2019
I’m excited to announce that I have been named a Friend of Redgate for 2019, my forth year in a row! The program targets influential people in...
2019-01-25
Friend of Redgate – 2019
I’m excited to announce that I have been named a Friend of Redgate for 2019, my forth year in a row! The program targets influential people in...
2019-01-25
Speaking at SQLBits 2019!
I’m proud to announce that I will be speaking at SQLBits on March 2nd 2019! It’s been a...
2019-01-25
159 reads
Speaking at SQLBits 2019!
I’m proud to announce that I will be speaking at SQLBits on March 2nd 2019! It’s been a goal of mine to speak at SQLBits for...
2019-01-25
New Pluralsight Course – Kubernetes Installation and Configuration Fundamentals
My new course “Kubernetes Installation and Configuration Fundamentals” in now available on Pluralsight here! If you...
2019-01-12
239 reads
New Pluralsight Course – Kubernetes Installation and Configuration Fundamentals
My new course “Kubernetes Installation and Configuration Fundamentals” in now available on Pluralsight here! If you want to learn about the course, check out...
2019-01-12
3 reads
Speaking at SQLSaturday Nashville – 815!
I’m proud to announce that I will be speaking at SQL Saturday Nashville on January 12th 2019! And wow,...
2019-01-08
151 reads
Speaking at SQLSaturday Nashville – 815!
I’m proud to announce that I will be speaking at SQL Saturday Nashvilleon January 12th 2019! And wow, 815 SQL Saturdays! This one won’t let you...
2019-01-08
1 reads
Pre-conference Workshop at SQLSaturday Chicago – 825
I’m proud to announce that I will be be presenting an all day pre-conference workshop...
2019-01-08
223 reads
Pre-conference Workshop at SQLSaturday Chicago – 825
I’m proud to announce that I will be be presenting an all day pre-conference workshop at SQL Saturday Chicago on March 23rd 2018! This...
2019-01-08
2 reads
I’m proud to announce that I will be speaking at this months We Speak Linux Webinar. Each month We Speak...
2018-12-02
177 reads
By Kevin3NF
Don’t Let Trouble Sneak Up on You Most SQL Servers run quietly. Until...
By Steve Jones
I had a conversation with a customer asking this question: how can I tell...
By Chris Yates
There was a time when the Chief Data Officer lived in the shadows of...
Comments posted to this topic are about the item Create an HTML Report on...
Hi everyone I am getting an error when I create the index but I...
Good morning all, I have been running into a very random weird issue that...
I have two calls to the GENERATE_SERIES TVF in this code:
SELECT TOP 10 gs.value FROM GENERATE_SERIES(1, 10) AS gs ORDER BY NEWID () OPTION (RECOMPILE); go DECLARE @a int = 10; SELECT TOP (@a) gs.value FROM GENERATE_SERIES(1, @a) AS gs ORDER BY NEWID () OPTION (RECOMPILE);In the actual query plans, what is the estimated number of rows for each batch in SQL Server 2022? See possible answers