MSSQLTips.com Kindle Contest
I'm always wary of contests to win free stuff, but the folks running MSSQLTips.com are legitimate (I write there as...
2011-08-04
1,040 reads
I'm always wary of contests to win free stuff, but the folks running MSSQLTips.com are legitimate (I write there as...
2011-08-04
1,040 reads
I grew up immersed in security. My father was a US Marine and going on and off base meant... security....
2011-08-03
1,228 reads
We recently ran into a case where connecting to a Windows Server 2003 server with SQL Server installed on it,...
2011-08-02
15,651 reads
This is part of a series of tips on how bad/rogue admins can get access to the data in your...
2011-07-28
2,172 reads
This is part of a series of tips on how bad/rogue admins can get access to the data in your...
2011-07-25
1,056 reads
This is part of a series of tips on how bad/rogue admins can get access to the data in your...
2011-07-22
1,368 reads
In a previous post I gave suggestions on how to get speaking credentials for consideration at a larger event, such...
2011-07-21
939 reads
This is part of a series of tips on how bad/rogue admins can get access to the data in your...
2011-07-21
728 reads
Yesterday I posted about manipulating group membership to get access to a SQL Server. Today comes attack vector #2: stealing an...
2011-07-14
1,188 reads
This is a series of blog posts about how administrators can gain access to SQL Server, even if you try...
2011-07-13
1,869 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