TGI SQL Friday - Weekly Roundup Friday 19th August 2016
Its been a lovely week here in the UK as we approach the end of August. Sun has been out,...
2016-08-19
424 reads
Its been a lovely week here in the UK as we approach the end of August. Sun has been out,...
2016-08-19
424 reads
This weeks great value IT training deals are in. This being SQL Server blog I would like to draw your...
2016-08-17
383 reads
It is that time of year when the Scandinavia holds its SQL Saturday events and once gain I have been...
2016-08-16
317 reads
This is an interesting question. Lets look at couple of definitions starting with Wikipedia’s definition
“Enterprise architecture (EA) is "a well-defined...
2016-08-15
499 reads
This week has seen the launch of my new SQL Server newsletter in conjunction with Learning Tree. If you would...
2016-08-12
358 reads
As many of you know I have been delivering Learning Tree training courses since way back in 2010. Combing training...
2016-08-10
429 reads
It’s that time of the week when the Great Value IT training page gets its weekly update and this week...
2016-08-09
374 reads
My post the top 3 books for becoming TOGAF certified punlished last week looked at books on preparing for the...
2016-08-08
429 reads
Its that time of the week when get the latest Learning Tree courses that have been available for £750 plus...
2016-08-03
332 reads
I often get asked what books are useful for preparing for the TOGAF certification exam. The resources are generally from...
2016-08-01
973 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