2020-12-12
373 reads
2020-12-12
373 reads
Today is a day for reflections in Steve's life, looking back at the incredible year of 2020.
2020-12-11
110 reads
As legal requirements grow and change, cloud computing might require a new consideration: where we physically store data.
2020-12-10
170 reads
Steve wonders if any of you see much of a difference between any of the virtual events taking place today.
2020-12-09
91 reads
The annual Advent of Code challenge is underway, and you can use it to help grow your career.
2020-12-08
231 reads
Today Steve notes that we often don't have all the knowledge or information we need, but we can work to acquire it.
2020-12-07
111 reads
Today Steve looks at legacy systems and the challenges they pose as we try to adapt them to new requirements.
2020-12-05
222 reads
SSMS is, well, it's what we mostly have from Microsoft. It's been around a long time, but it is getting regularly released. There are new versions about every quarter, and there are bug fixes and minor enhancements. Azure Data Studio appears to be where Microsoft would like most of us to move, but I, and […]
2020-12-04
322 reads
Can you catch minor code changes that might cause issues? Steve advocates for more testing to ensure you can.
2020-12-03
118 reads
Do we care or worry if our databases need to handle encrypted data? Steve has a few thoughts about why we may or may not be concerned.
2020-12-02
136 reads
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...
I’m excited to announce the release of a new open-source project that fully automates...
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