Breaking Things Apart
Microsoft is unbundling their new hypervisor from Windows. Could this happen with SQL Server?
2007-12-05
41 reads
Microsoft is unbundling their new hypervisor from Windows. Could this happen with SQL Server?
2007-12-05
41 reads
There are over half a million database servers out on the Internet without protection. How can this happen?
2012-11-06 (first published: 2007-12-04)
474 reads
Will the 40 hour work week change anytime soon? A survey seems to think so, and Steve Jones (somewhat) agrees.
2012-11-05 (first published: 2007-12-03)
319 reads
A few notes and comments on the database news from the previous week.
2007-12-03
18 reads
An open letter to Microsoft from the CEO of Mandriva Linux might not have been the best idea.
2017-03-04 (first published: 2007-11-30)
362 reads
Volunteers are important to ensuring the success of so many organizations. IT-based organizations, such as user groups, are no different. Steve Jones leads you through a few of the stages of being a volunteer and hopes more of you will participate in your local area.
2007-11-29
55 reads
2007-11-28
80 reads
Data quality is everyone's business and it takes some work. Steve Jones talks about some hints for you and your manager to make things better in your data systems.
2012-11-07 (first published: 2007-11-27)
164 reads
A few thoughts from Steve Jones on how you can help increase your own job security in IT.
2012-10-30 (first published: 2007-11-26)
372 reads
2007-11-23
35 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