Agree or Lose Features
Forcing users to agree to a new EULA or removing features seems like a bad idea to Steve.
2021-05-26
192 reads
Forcing users to agree to a new EULA or removing features seems like a bad idea to Steve.
2021-05-26
192 reads
Steve looks at a technique that some think will allow more data to be used in research and training.
2021-05-24
137 reads
2021-05-22
160 reads
Both Python and R have become very popular languages in the last few years, especially among data professionals. Which should you learn or use? Steve has a few thoughts.
2021-05-21
412 reads
2021-05-19
222 reads
2021-05-17
230 reads
Of all the valuable attributes of a DBA, from passion to humility to practicality, perhaps one of the most important attributes may turn out to be the most seemingly nebulous: foresight. According to Free Dictionary, foresight is the "perception of the significance and nature of events before they have occurred". Foresight does not come naturally to most people, as the […]
2021-05-15
328 reads
2021-05-14
246 reads
Being prepared for a disaster might mean having a way to collect data when something occurs.
2021-05-12
259 reads
Being able to audit the actions others take on your systems is important to Steve, especially when working in the cloud.
2021-05-10
185 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 Optional Parameter Plan Optimization in...
Comments posted to this topic are about the item AI Experience Gap that we...
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