Taking Shortcuts
We don't mean to introduce security issues, but sometimes we do because we give in to pressure.
2018-04-30
41 reads
We don't mean to introduce security issues, but sometimes we do because we give in to pressure.
2018-04-30
41 reads
2018-04-30
57 reads
Does your company have a Chief Data Officer? Steve Jones doesn't think you need one to use data wisely.
2018-04-27
53 reads
2018-04-26
176 reads
This crossword puzzle is based on the contents of the Stairway to Advanced T-SQL.
2018-04-25
301 reads
The Cloud isn't always what it seems and Steve notes that paying attention to finances might be the most important thing.
2018-04-24
104 reads
Back in my early days as a database administrator, almost 16 years ago, I happened upon a web site called SQL Server Central. Because I found so many useful articles and forum posts, the site was open in my browser at work every single day. It was a great source of information, and eventually, I […]
2018-04-23
91 reads
2021-08-23 (first published: 2018-04-23)
398 reads
We could use more intelligence in our backup systems, since we don't need to keep all those files.
2018-04-20
54 reads
Making a connection to the wrong database had disastrous results for Travis-CI.
2022-09-28 (first published: 2018-04-19)
221 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