PASS Summit 2013 Deck and Demos Live
Ready to rock some Internals.Hello Dear Reader! This is just a quick blog to say that my Deck and Demo's...
2013-10-18
806 reads
Ready to rock some Internals.Hello Dear Reader! This is just a quick blog to say that my Deck and Demo's...
2013-10-18
806 reads
Okay Dear Reader one more time let me say that if you are interested in Hekaton In-Memory OLTP Then you...
2013-10-17
1,034 reads
Final thoughts Dear Reader. This is a big launch year for Microsoft and we are getting some very cool toys...
2013-10-16
708 reads
Hello Dear Reader! Just a quick blog today. The Deck and Demo’s for my Presentations today at SQL DevConnections are...
2013-10-02
518 reads
Hello Dear Reader! This year Pragmatic Works has brought our Performance Tuning Workshop to Chicago, Boston, and Atlanta. Due to...
2013-09-26
528 reads
Hello Dear Reader! We are finishing up the final day of the Performance Tuning Workshop here in Atlanta and I...
2013-09-26 (first published: 2013-09-24)
7,502 reads
I could hear SQL saying to my C: Drive "Why You Little...." Hello Dear Reader!
The Blog about SQL Saturday 232 coming...
2013-09-17
1,091 reads
Hello Dear Reader! This is the second Tuesday of the month and you know what that means, T-SQL Tuesday the...
2013-09-12 (first published: 2013-09-10)
1,752 reads
http://bit.ly/16UyEPHHello Dear Reader. Almost two weeks ago I delivered a presentation for the 24 Hours of PASS on SQL Server...
2013-08-16
937 reads
Hello Dear Reader! I got a lot of great questions during the 24 Hours of PASS last week and I'm...
2013-08-09
822 reads
By Chris Yates
There was a time when the Chief Data Officer lived in the shadows of...
By Rayis Imayev
"But I don’t want to go among mad people," Alice remarked."Oh, you can’t help...
By Steve Jones
I saw some good reviews of the small gemma3 model in a few places...
Comments posted to this topic are about the item Create an HTML Report on...
Comments posted to this topic are about the item We Should Demand Better
Comments posted to this topic are about the item Estimated Rows
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? See possible answers