Are You Security Minded?
It's fun to just sit and talk with people, never know what you'll learn or be forced to rethink based...
2008-12-09
730 reads
It's fun to just sit and talk with people, never know what you'll learn or be forced to rethink based...
2008-12-09
730 reads
Managing by the numbers often gets a bad name among employees because it can lead to a lot of gaming...
2008-12-08
650 reads
I attended the Tampa Code Camp this past weekend. It was located at the Kforce Building in Tampa, a very...
2008-12-08
1,104 reads
I have a long held belief that if you really care about results, you have to measure them somehow. The...
2008-12-07
304 reads
Brent Ozar had a nice post recently on starting a technical blog, well worth reading and a good addition to...
2008-12-07
272 reads
Last event of the year here in Florida. I'll be heading to the Tampa Code Camp to do a presentation...
2008-12-04
215 reads
Hopefully in the next week or so the full financial info will be released to all members, but in the...
2008-12-03
332 reads
Recently I needed to rearrange some stuff at the office and part of that included moving our install of Quickbooks...
2008-12-02
245 reads
I ran across this history quiz in Jeff Duntemann's blog and thought I'd give it a try. I managed to...
2008-12-01
427 reads
That's the question posed by Kalen Delaney in a write up on SQLMag.com. Is a SQL event of more than...
2008-11-30
1,569 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