Badly Encrypted Databases
Database encryption is hard, and somewhat controversial. Steve thinks we ought to do a better job of it.
2019-03-13
80 reads
Database encryption is hard, and somewhat controversial. Steve thinks we ought to do a better job of it.
2019-03-13
80 reads
Technical debt can cripple software development, much like financial debt hurts individuals and organizations. Steve wants to know if you measure your debt today.
2019-03-12
115 reads
Phil Factor argues that very few processes, even in well-established businesses, mimic the dreamy clarity and autonomy of a microservice.
2019-03-11
169 reads
The point of this article is that only service accounts and/or specific network sql admin accounts should have sysadmin rights.
2019-03-11
1,615 reads
We sometimes need to think differently about different situations. Steve notes that we might approach the way we solve problems in new ways.
2019-03-08
191 reads
2019-03-07
104 reads
Google and Microsoft have plans for dealing with data incidents. Steve thinks you should as well.
2019-03-06
80 reads
It seems that many companies are implementing AI into their systems. Steve notes that this isn't always a good idea.
2019-03-05
91 reads
2019-03-04
117 reads
2019-03-04
109 reads
When I put together the invitation for T-SQL Tuesday #202, I wasn't sure what...
By Steve Jones
My life has some crazy travel stretches for sure. Between speaking, office visits, customer...
In Part 1, we saw how ‘Vamana’ represents vectors as nodes, connects them with...
Comments posted to this topic are about the item Server-Level Table sizes
Comments posted to this topic are about the item Optional Parameter Plan Optimization in...
There is a table tmp_tab:
CREATE TABLE tmp_tab ( id int, val int );
INSERT INTO tmp_tab VALUES (1, 1), (2, NULL), (3, 3), (4, 4), (5, 5);You want to order the rows ids by the following expression:
ISNULL(val, id) + 1Which of the following queries produces the expected ordering and why? (Select all correct) See possible answers