Off to the Big Apple
I’m heading to New York today, off for SQL Saturday #59. Another travel day, but I am looking forward to...
2010-11-19
797 reads
I’m heading to New York today, off for SQL Saturday #59. Another travel day, but I am looking forward to...
2010-11-19
797 reads
I’m all scheduled out for the next week with newsletters and content ready to go through Nov 29. I’m not...
2010-11-18
697 reads
It seems that there is a disconnect between how technical people view security and how business people see it. Steve Jones talks about the problems that we have in trying to secure the systems we manage.
2010-11-18
183 reads
Are you truly an expert in SQL Server? Would you claim to be a 10 on a scale of 1 to 10? Steve Jones notes that the product is so wide and deep that it's unlikely any of us will be an expert in most of SQL Server, and that's OK.
2010-11-17
312 reads
Recently I had the privilege of watching Paul Randal and Kimberly Tripp present (separately) at SQL Server Connections. If you...
2010-11-17
842 reads
A quick look at the SQLServerCentral party at the 2010 PASS Summit, thanks to SQLChicken. It’s on UStream
Not great quality,...
2010-11-17
808 reads
I received a note today about someone else that is plagiarizing content from SQLServerCentral. It’s a blog on Windows Live...
2010-11-16
1,111 reads
Not many of us work at Google scale, where every little thing you do can matter. However Steve Jones thinks that the little things still matter when you are building software.
2010-11-16
237 reads
I’m traveling to New York City on Friday for SQL Saturday #59 and returning Sunday morning. As soon as I...
2010-11-16
801 reads
I get asked this question fairly often. How do I find time to write so much, work on SQL Server,...
2010-11-15
1,002 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