A Deeply Planted Seed-Question of the Day
Another trivia question today, this one about figuring out which of the options provided has a particular negative identity seed....
2014-07-01
299 reads
Another trivia question today, this one about figuring out which of the options provided has a particular negative identity seed....
2014-07-01
299 reads
2014-07-01
1,921 reads
The Product Centric Career is my latest editorial for SQLServerCentral, this one from the perspective of my own career and...
2014-06-30
1,147 reads
How did you fall in into your particular career? Was it because of a product? Andy Warren talks about his career evolution and how often we become trapped by the products we work with.
2014-06-30
140 reads
Been busy the past week, not as much time on this as I’d have liked:
Received the “retro” flyer with the...
2014-06-27
1,132 reads
What is 268435456? is the Friday question of the day. It’s a trivia question, but maybe an interesting one for...
2014-06-27
1,320 reads
2014-06-27
2,270 reads
Finally the email we’d all been waiting for arrived yesterday, the results of session selection for the 2014 PASS Summit....
2014-06-25
732 reads
The Great Escape is the question today, one I think you will like because…it’s about LIKE! It’s a head scratcher....
2014-06-25
556 reads
2014-06-25
2,006 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