SQL Saturday #200 - Philadelphia
If you read my post from yesterday you will know I will be spending some time on the US east...
2013-05-08
775 reads
If you read my post from yesterday you will know I will be spending some time on the US east...
2013-05-08
775 reads
At the end of this month of May, I will be teaching Learning Tree’s 3 day SQL Server Virtualization course...
2013-05-07
777 reads
Its been a long winter so far this weekend has seen the first signs of spring here in South Wales,...
2013-04-22
671 reads
This is an off-topic post for a Friday. With Cardiff City reaching the premier league this week and all the...
2013-04-19
609 reads
Well sort of…it took a while.
I’d done some plays and singing at school but my mother made me practice...
2013-04-09
860 reads
Learning Tree are offering their 3 day SQL Server High Availability course this April in London. Running between 17th and...
2013-03-28
1,465 reads
In my session (An Introduction to SQL Server Virtualisation) at SQL Saturday Exeter I told the attendees that I would...
2013-03-13
854 reads
This last weekend I attended my first SQL Server Saturday event. The event was held in The Jury’s Inn in...
2013-03-11
833 reads
This time tomorrow morning I will be on my feet starting to deliver a 50 minute session at SQL Saturday...
2013-03-08
875 reads
Just short post for a Friday. This Saturday (tomorrow) I will be speaking at SQL Saturday 194 which is being...
2013-03-08
708 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