PCMagazine Goes to Monthly Format
I don't have a URL handy for it, but in the latest print issue of PC Mag they announced changing...
2007-12-26
1,390 reads
I don't have a URL handy for it, but in the latest print issue of PC Mag they announced changing...
2007-12-26
1,390 reads
As a user group leader I see new products as a chance to make sure our members know about the...
2007-12-25
1,478 reads
I've put this off for a while, but I needed a break from the routine and I'm starting to get...
2007-12-20
1,380 reads
We had our final meeting of the year last night, minutes posted here. Pretty good turn out, 22 total. And...
2007-12-19
1,429 reads
I'm a fan of lists so that I stay on track rather than trying to remember all things at the...
2007-12-18
1,409 reads
As an owner of a small business one of the constant struggles is time management, and more importantly, finding time...
2007-12-17
1,476 reads
I ran across this in the Google bloghttp://googleblog.blogspot.com/2007/12/encouraging-people-to-contribute.html announcing a new beta feature called Knol that allows an author to...
2007-12-14
1,667 reads
I ran across this list of interesting tools by Scott Hanselman and there is some good stuff to look at...
2007-12-14
1,356 reads
This question seems to come up a lot and it's worth discussing. Few user groups are incorporated, fewer still are...
2007-12-11
631 reads
Following up on my post about Wikipedia, I read an article in Eweek, 25 Tips for a Better Wiki Deployment...
2007-12-09
632 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