PASS Summit Key Note Day 2 – Recap
As I sit here in an offshoot of the convention center, I started reflecting back to this morning’s keynote for...
2015-10-29
854 reads
As I sit here in an offshoot of the convention center, I started reflecting back to this morning’s keynote for...
2015-10-29
854 reads
Security as been invested more in SQL Server 2016 than any other.
Protecting your data at rest and in motion with...
2015-10-28
414 reads
Security as been invested more in SQL Server 2016 than any other.
Protecting your data at rest and in motion with...
2015-10-28
318 reads
Joseph Sirosh, Corporate VP of Data Group Microsoft talks about zigabytes….what!!!!!! Predominately in the cloud is where data will be moving;...
2015-10-28
527 reads
Joseph Sirosh, Corporate VP of Data Group Microsoft talks about zigabytes….what!!!!!! Predominately in the cloud is where data will be moving;...
2015-10-28
343 reads
PASS Summit Key note is off the ground and running…..
President Thomas LaRock talks about the 16th annual meeting that is...
2015-10-28
455 reads
PASS Summit Key note is off the ground and running…..
President Thomas LaRock talks about the 16th annual meeting that is...
2015-10-28
328 reads
This year I was fortunate enough to get the invite to join the live bloggers table for both keynotes going...
2015-10-28
404 reads
This year I was fortunate enough to get the invite to join the live bloggers table for both keynotes going...
2015-10-28
313 reads
You’ve heard about it for some time now, and you finally got the gumption to ask your boss if the...
2015-09-22
535 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