2022-10-31
234 reads
2022-10-31
234 reads
PASS Data Community Summit is coming up like an out of control freight train. Another couple of weeks and it'll be here. I'm excited about it every year and I really hope to see you there. Please, consider this a personal invite to say hi if you see me around. I'm bringing all this up […]
2022-10-29
184 reads
2022-10-28
194 reads
Our design and modeling is often done with some level of uncertainty. Steve has a few guidelines today.
2022-10-26
187 reads
2022-10-24
200 reads
Passwords cracked in under an hour using modern hardware have Steve shaking his head.
2022-10-22
434 reads
Working remotely can be more than working at home, which Steve thinks helps the work-life balance.
2022-10-21
161 reads
Meeting are work, even though we sometimes don't think of them as a productive part of our job.
2022-10-19
200 reads
2022-10-17
106 reads
2022-10-14
183 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