2018-04-05
198 reads
2018-04-05
198 reads
Titles are very important to many people. Steve wonders if the main title many of us use will go away.
2018-04-04
239 reads
2018-04-03
237 reads
2018-04-02
77 reads
AD Authentication in SQL Server has been around for a long time, so why do we still use SQL Authentication?
2018-03-30
395 reads
2018-03-29
141 reads
The GDPR may bring nightmare letters like the one linked to from the editorial.
2022-06-03 (first published: 2018-03-28)
258 reads
Using new features and changing code can cause problems in your environment. Always test to be sure that the impact is acceptable.
2018-03-27
58 reads
2018-03-26
89 reads
We often make changes to production systems in an ad hoc manner. Steve asks how much auditing we might have in place.
2018-03-23
68 reads
By Steve Jones
I was testing the new SSMS (v22 Preview 3) with Copilot and ran into...
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...
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