SQL Server Find Unused Data Files
You know that old SQL Server you’ve left running the last 5 years and had numerous databases dropped and restored...
2018-12-06
644 reads
You know that old SQL Server you’ve left running the last 5 years and had numerous databases dropped and restored...
2018-12-06
644 reads
Since SQL Server 2014 SP1 we’ve had DMV’s that can support Live Query Statistics (Basically a query plan that gives...
2018-11-24
238 reads
As with most of my posts of late all examples here are using the StackOverflow SQL Server database that can...
2018-10-02
212 reads
As with most of my posts of late all examples here are using the StackOverflow SQL Server database that can...
2018-10-02
114 reads
Picture the scene….. DBA Doug is sitting in his cubicle minding his own business when App Dev Allister gives him...
2018-09-29
140 reads
Picture the scene….. DBA Doug is sitting in his cubicle minding his own business when App Dev Allister gives him...
2018-09-29
151 reads
SQL Server has a number of settings set on a session that can influence the behaviour or queries. When debugging...
2018-06-01
194 reads
SQL Server has a number of settings set on a session that can influence the behaviour or queries. When debugging...
2018-06-01
107 reads
Side note : I originally started this post to show with examples all the scenarios where you can get minimal logging...
2018-05-29
142 reads
Side note :
I originally started this post to show with examples all the scenarios where you can get minimal logging...
2018-05-29
162 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...
Good morning all, I have been running into a very random weird issue that...
Comments posted to this topic are about the item We Should Demand Better
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