24 Hours of PASS Deck and Demo's Live!
Hello Dear Reader! Another very quick blog. Thank you to all of the people that tuned in to see me...
2013-07-31
1,147 reads
Hello Dear Reader! Another very quick blog. Thank you to all of the people that tuned in to see me...
2013-07-31
1,147 reads
Hello Dear Reader! This is just a very quick blog to let you know that the 24 Hour's of PASS...
2013-07-31
1,336 reads
Hello Dear Reader! This week finds me up in Jacksonville at Pragmatic Works HQ. I'm a little behind in getting...
2013-07-30
1,715 reads
Hello Dear Reader. Quick blog today. If you are working in the SQL Server world eventually you will try to...
2013-07-26
1,030 reads
Hello Dear Reader! Just a quick blog post today. The Schedule for SQL Saturday 232 is now live! You probably...
2013-07-16
548 reads
Hello Dear Reader, what a busy week we’ve had last week! I’ve got 3 big Thank You’s that I would...
2013-07-18 (first published: 2013-07-15)
1,958 reads
Hello Dear Reader! Welcome to my blog on T-SQL Tuesday #44 Second Chances. I’m hosting this month, and we are...
2013-07-09
1,695 reads
Hello Dear Reader! I just wanted to write to Thank All of you for the submissions to SQL Saturday 232...
2013-07-05
761 reads
Hello Dear Reader! This is the first Tuesday of the month and you know what that means. It’s time to...
2013-07-02
2,288 reads
Hello Dear Reader! This post finds me back in Boston getting ready for the Pragmatic Works Performance Tuning Workshop. But...
2013-06-11
1,041 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 Identify Unused Tables in SQL...
Comments posted to this topic are about the item SQL Server Advanced Troubleshooting and...
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