I Hate To Send This Email
Steve Jones wonders how many of us have had to send, or will have to send this email.
2021-04-02 (first published: 2017-03-23)
471 reads
Steve Jones wonders how many of us have had to send, or will have to send this email.
2021-04-02 (first published: 2017-03-23)
471 reads
Steve is excited that SQL Server is moving to a new platform.
2021-04-01
150 reads
Apple buys a company every few weeks. The data integration for this must be a large effort.
2021-03-31
109 reads
Using metadata to drive software is very useful, which means that having clean data and lots of metadata can help create better software.
2021-03-30
77 reads
One of the interesting things about modern software is how updates are handled.
2021-03-29
80 reads
When do we ask for help? It's a tough balance to strike between asking too soon or waiting too long.
2021-03-26
133 reads
2021-03-25
159 reads
With many of us working in a distributed fashion, Steve wonders if things have changed for the process flow you follow.
2021-03-22
146 reads
Databases don't manage themselves, but Steve sees this as an opportunity, not a problem.
2021-03-20
112 reads
Today Steve asks about the tools you use for your job and if they help or hurt your productivity.
2021-03-19
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