Is the Golden Age of Information Technology Almost Over?
Andy Warren wonders if our industry is moving to a new era today.
2015-07-09
241 reads
Andy Warren wonders if our industry is moving to a new era today.
2015-07-09
241 reads
I recently read PASS and Business Analytics: A Winning Combination on the PASS blog and it reminded me that I’ve been...
2015-07-08
572 reads
I’ve been hosting this blog on Azure for a while, running WordPress on top of MySQL. Works fine, gives me...
2015-07-02
519 reads
Ran into this issue today. A subscription that had been working failed. Looking at it in the RS portal it...
2015-07-01
9,770 reads
I’m trying to evolve a little in the topics I pick and how I write them to push the boundaries...
2015-06-29
852 reads
PASS just posted Changes to the 2015 PASS Board Elections based on feedback from the 2014 NomCom. I was part of that...
2015-06-25
438 reads
I’m a little late posting this, Culture Clashes and Arrogance was featured on June 17, 2015. One of my favorites...
2015-06-25
498 reads
The next oPASS meeting is tomorrow night (June 25, 2015):
DBAs do not always have time to work with some of...
2015-06-24
393 reads
We’re planning to run one or two (or maybe even three) seminars (aka pre-cons) in conjunction with SQLSaturday Orlando 2015....
2015-06-24
479 reads
SQL Server has the concept of fill factor for leaving extra space in pages to reduce the number of page...
2015-06-24
795 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