2018-09-19
96 reads
2018-09-19
96 reads
2018-09-18
57 reads
2018-09-17
221 reads
Steve talks about the disparate regulations we face for data privacy and protection.
2018-09-17
35 reads
This week Steve wonders if you have a process for setting up your new instances.
2018-09-14
64 reads
2023-07-07 (first published: 2018-09-13)
378 reads
Trying to pick the perfect schedule at a conference is fraught with issues.
2018-09-12
34 reads
2018-09-11
77 reads
Recently, there was a prominent film director fired from directing an episode in a very entertaining and profitable movie franchise. His firing was for tweets he made that were in very bad taste. And bad doesn’t begin to cover it, they were about topics that were universally despicable. What made this interesting was not that […]
2018-09-10
60 reads
There are lots of options with cloud providers and hybrid versions of public and private clouds might be the best solution.
2018-09-10
52 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