SSC Editorial: The Problem Solver
The Problem Solver. Ever scoffed at personality types? Surely none of us are just one thing, but often we are...
2015-08-31
1,120 reads
The Problem Solver. Ever scoffed at personality types? Surely none of us are just one thing, but often we are...
2015-08-31
1,120 reads
One of the big goals for SQLSaturday was for it to be a membership drive. It’s worked hugely well in...
2015-08-27
708 reads
Compliance training, never a fun topic and I think that is too bad. A combination of companies checking the box,...
2015-08-26
708 reads
When a new SQLSaturday event is launched an email is sent to all the speakers who have opted in to...
2015-08-25
624 reads
Meeting held at Nova Southeastern here in Orlando Arrived early to meet David Pless, good thing we were early – couldn’t...
2015-08-17
641 reads
Meeting is held at Sonny’s BBQ, they have a long room (used to be outside seating) that works pretty well...
2015-08-17
619 reads
My mom gave me a book about Leonard Nimoy recently and we talked later about the impact his life had...
2015-08-15
573 reads
Scott McKenzie was the DJ of Mix 105 here in Orlando for an astounding 24 years and that’s been the...
2015-08-12
631 reads
David Pless is presenting:
Query Store is a new feature in SQL Server 2016, and is also available in Azure SQL...
2015-08-12
558 reads
Ran across this while visiting the Air & Space Museum over the summer, the Smithsonian launched a Kickstarter campaign to raise...
2015-08-05
672 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