Blog Changes
I have made a few changes to the blog over the past couple weeks The changes have come about as...
2012-10-03
645 reads
I have made a few changes to the blog over the past couple weeks The changes have come about as...
2012-10-03
645 reads
SQL Server Virtualisation and Consolidation: Hands-On
Come and join me in London this December for a three day course covering the...
2012-10-02
618 reads
Come and join me live in New York this coming December where I will be presenting Learning Tree’s2109 SQL Server...
2012-10-01
836 reads
There are still seats left on the Learning Tree course – An Introduction to SQL Server event that I will be...
2012-09-27
806 reads
I run into an interesting issue with an Availability Group database recently. I was running a data load against a...
2012-09-26
4,999 reads
Another date has been added to my schedule for the delivery of 2109 SQL Server Virtualization and Consolidation. Come and...
2012-09-25
675 reads
Its not often I publish two blog posts in a single day but this Monday I will make an exception....
2012-09-24
966 reads
December this year will be a great month for me. I am scheduled to deliver my new Learning Tree course...
2012-09-24
686 reads
SQL Server 2012 has been in RTM since the 1st April 2012. Many of my clients have been evaluating the...
2012-09-20
1,103 reads
This last year or so I have been backing up my important files to cloud. I started using SkyDrive and...
2012-09-19
647 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