CTRL Scroll and Getting Old
The handiest thing that I’ve used lately for a computer is the Ctrl button and the scroll wheel on my...
2011-01-11
972 reads
The handiest thing that I’ve used lately for a computer is the Ctrl button and the scroll wheel on my...
2011-01-11
972 reads
Today Steve Jones talks about NOSQL and why it might be important for SQL Server DBAs to understand more about it and be able to talk about when it is appropriate to use.
2011-01-11
712 reads
The SQL community is inspiring, and there are a lot of people that work hard to contribute to it. With...
2011-01-10
1,034 reads
I decided that I really like the WordPress platform, and more importantly, that I need to consolidate all the work...
2011-01-08
816 reads
Not done yet, but I have been slowly patching and installing software over the last few evenings, stuck at my...
2011-01-07
664 reads
I toyed with the idea of using the SSD for my main drive, but I’d really like to get the...
2011-01-07
1,063 reads
2011-01-07
2,697 reads
I backed up my machine, copied a bunch of data to both a thumb drive as well as the second...
2011-01-06
754 reads
Do you know what to do in case of a data breach? Steve Jones talks about the importance of having a "runbook" for security that covers the same types of things you might need to know for disaster recovery.
2011-01-05
156 reads
I backed up my machine, copied a bunch of data to both a thumb drive as well as the second...
2011-01-05
902 reads
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....
By Steve Jones
I have said and written this many times: Redgate Software is the type of...
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