The Devil is in the Details
The story of an engineer solving a problem is a good one that shows technical skills and a passion for the work.
2021-01-05
146 reads
The story of an engineer solving a problem is a good one that shows technical skills and a passion for the work.
2021-01-05
146 reads
Today Steve wonders about the move back to offices and if you are looking forward to it or trying to avoid it.
2021-01-04
147 reads
2021-01-02
100 reads
2021-01-01
80 reads
2020-12-31
190 reads
2020-12-30
90 reads
2020-12-29
254 reads
Today Steve looks at the career paths that might, or might not, exist inside an organization.
2020-12-28
248 reads
On December 17, the PASS organization announced the news that it would cease operations on January 15, 2021. Since the announcement, folks have been scrambling to figure out how to keep their user groups and events going or downloading recordings. By the way, if you need assistance with your user group, please reach out to […]
2020-12-26
206 reads
Merry Christmas today. Happy Holidays to all of you, for whichever holiday you celebrate this time of year. It's been a long, hard year, but I hope you are healthy and happy as we close out 2020. Hopefully next year is more enjoyable for all of us.
2020-12-25
49 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