Clownpocalypse and DR
Today we have a guest editorial as Steve is out of town at the PASS Summit. Grant looks at disasters and being prepared.
2020-10-20 (first published: 2016-10-24)
230 reads
Today we have a guest editorial as Steve is out of town at the PASS Summit. Grant looks at disasters and being prepared.
2020-10-20 (first published: 2016-10-24)
230 reads
An ETL issue with Excel causes issues, because the users didn't realize a limitation.
2020-10-19
299 reads
Phil Factor's manual for taming machines, applications, and other wild beasts.
2020-10-17
126 reads
Steve asks what you might want to achieve or accomplish in your career.
2020-10-16
236 reads
Are computers getting smart enough to pass the Turing test or are humans getting worse at representing themselves as intelligent?
2020-10-15
260 reads
Do meetings and paperwork take a toll on administrators? Steve draws a comparison to some of the changes in the US healthcare system.
2020-10-14
107 reads
2020-10-13
156 reads
Is going to a conference valuable for you? Your employer? Today Steve asks you to think about what might be important.
2020-10-12
91 reads
2020-10-10
143 reads
DevOps is about being effective and getting work out to customers. Today Steve notes that the lunch factor might help you reexamine your software development process.
2020-10-09
301 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