The Inteview is Done
I completed my interview for the PASS board election today. I don’t want to talk about what was in the...
2010-08-06
408 reads
I completed my interview for the PASS board election today. I don’t want to talk about what was in the...
2010-08-06
408 reads
I noticed the scores for the first part of the PASS nomination process were posted recently. These were the aggregate...
2010-08-05
420 reads
Continuing on with my Thursday series of SQL Saturday posts, this time I wanted to talk about keynotes.
I’ve been to...
2010-08-05
430 reads
I like way that the SQL Rally is being run. Having the community interact with the organizers and try to...
2010-08-05
1,147 reads
Which big tech company has the most servers? It doesn't matter, but how you show the data can matter. Steve Jones talks about a skill data professionals should develop.
2010-08-04
228 reads
The short answer is it doesn’t. I guess that’s the long answer as well.
A few people have posted questions...
2010-08-04
430 reads
Today Steve Jones talks about how you might be able to help keep your employees excited and happy with their jobs.
2010-08-03
171 reads
I saw a post recently where a person working with SQL Server had log shipping setup. They were asking if...
2010-08-03
933 reads
A survey shows the majority of IT administrators have snooped for data on their networks. Steve Jones reminds us to be professionals, each and every day.
2010-08-02
150 reads
It’s a little less than two weeks until SQL Saturday #52 in Baton Rouge. I attended last year, and thoroughly...
2010-08-02
360 reads
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...
One of my favourite features of SQL Server 2022 was the T-SQL Snapshot Backups....
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