SQL Server 2012 Skills Upgrade–November
There are still some places available for Learning Tree’s SQL Server 2012 Skills Upgrade course this November. The class is...
2012-11-07
993 reads
There are still some places available for Learning Tree’s SQL Server 2012 Skills Upgrade course this November. The class is...
2012-11-07
993 reads
Over the past few weeks I have been doing some work with Windows Server 2012 and learned a few little...
2012-11-06
585 reads
I’m involved with with a new venture called sqlstreet.co.uk. SQL Street is the place to shop for database experts.
Here’s a...
2012-11-05
731 reads
Amazon has released the latest version of it Kindle – the Kindle Fire HD.
It seems amazon are moving away from a...
2012-10-29
619 reads
Come and join me live in Stockholm Sweden early in 2012 where I will be presenting Learning Tree’s2109 SQL Server...
2012-10-22
505 reads
This December (5th - 7th) I will be presenting SQL server Consolidation and Virtualization: Hands-On for Learning Tree in New York....
2012-10-19
927 reads
This December I will be presenting An Introduction to SQL Server 2008 Hand-On for Learning Tree at the LEC in...
2012-10-18
429 reads
There are still some seats left on the SQL Server 2008 A Comprehensive Hands-On Introduction that I will be presenting...
2012-10-15
721 reads
There are still some seats left on the SQL Server 2008 A Comprehensive Hands-On Introduction that I will be presenting...
2012-10-12
566 reads
Come and join me live in London this coming December where I will be presenting Learning Tree’s2109 SQL Server Virtualization...
2012-10-08
828 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