SQL Server 2008 SP1 Cumulative Update 8 Released
Microsoft has releasedSQL Server 2008 SP1 CU8 (Build 2775). There is no corresponding CU for the RTM branch of SQL...
2010-05-18
1,309 reads
Microsoft has releasedSQL Server 2008 SP1 CU8 (Build 2775). There is no corresponding CU for the RTM branch of SQL...
2010-05-18
1,309 reads
One of the more interesting and valuable features in SQL Server 2008 R2 Enterprise Edition (and Datacenter Edition) is data...
2010-05-17
493 reads
One of the more interesting and valuable features in SQL Server 2008 R2 Enterprise Edition (and Datacenter Edition) is data...
2010-05-17
1,231 reads
I was spelunking around in SQL Server 2008 R2 today, after looking at a PowerPoint presentation by Madhan Arumugam about...
2010-05-11
1,780 reads
Joining in the current meme started by Paul Randal (blog | twitter), here is my list of five features or settings...
2010-05-11
12,523 reads
Microsoft added a new DMV, sys.dm_db_persisted_sku_features to SQL Server 2008 that you can use to determine whether you have any...
2010-05-10
1,142 reads
The Colorado Springs SQL Server User’s Group is having their May meeting on May 19.
It will be held at the...
2010-05-07
691 reads
The Denver SQL Server User’s Group will be having their May meeting next Thursday, May 20. As always, the meeting...
2010-05-07
497 reads
I had a question from a developer yesterday about how to calculate the difference between local time (on the database...
2010-05-06
1,501 reads
I think it is very important to be able to discover exactly what type of hardware is in an existing...
2010-05-05
1,002 reads
By Kevin3NF
Don’t Let Trouble Sneak Up on You Most SQL Servers run quietly. Until...
By Steve Jones
I had a conversation with a customer asking this question: how can I tell...
By Chris Yates
There was a time when the Chief Data Officer lived in the shadows of...
Comments posted to this topic are about the item Create an HTML Report on...
Hi I have a SP that occasionally get this error: Cannot resolve the collation...
Hi everyone I am getting an error when I create the index but I...
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 in SQL Server 2022? See possible answers