Good Security Needs Layers
A good security system needs layers since our applications and platforms don't exist in a vacuum.
2018-04-18
49 reads
A good security system needs layers since our applications and platforms don't exist in a vacuum.
2018-04-18
49 reads
Machine Learning is an exciting branch of computer science, but it doesn't solve all our problems.
2018-04-17
65 reads
The pre-conference sessions for the 2018 PASS Summit were released.
2018-04-16
60 reads
Grant talks about the challenges of helping people in online forums and getting them to learn rather than grab the first solution.
2018-04-16
135 reads
2018-04-13
67 reads
When we build software, are we empathetic to how others (literally) view our software?
2018-04-12
69 reads
2018-04-11
52 reads
2018-04-10
154 reads
Phil Factor argues that the ability to write simply and expressively is a much under-valued skill in IT, and explains the main traps to avoid.
2018-04-09
102 reads
Steve asks the question today of how you might measure downtime and the scope you are concerned about.
2018-04-09
95 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