Join the New Stars of Data
There are plenty of opportunities to grow your career by sharing knowledge. Steve points out a few today.
2020-12-17
134 reads
There are plenty of opportunities to grow your career by sharing knowledge. Steve points out a few today.
2020-12-17
134 reads
Today Steve asks what you might want out of your local organization devoted to the data platform.
2020-12-16
75 reads
2020-12-15
122 reads
2020-12-14
132 reads
2020-12-12
315 reads
Today is a day for reflections in Steve's life, looking back at the incredible year of 2020.
2020-12-11
101 reads
As legal requirements grow and change, cloud computing might require a new consideration: where we physically store data.
2020-12-10
157 reads
Steve wonders if any of you see much of a difference between any of the virtual events taking place today.
2020-12-09
83 reads
The annual Advent of Code challenge is underway, and you can use it to help grow your career.
2020-12-08
222 reads
Today Steve notes that we often don't have all the knowledge or information we need, but we can work to acquire it.
2020-12-07
99 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