Blog Topics - Where do you draw the Line?
I started blogging a few months ago and since I started writing my own blog, I've been a much bigger...
2010-04-01
502 reads
I started blogging a few months ago and since I started writing my own blog, I've been a much bigger...
2010-04-01
502 reads
Sometimes I think I’m quite the goober. Alternately I’ll laugh or put my head in my hands as I try...
2010-04-01
369 reads
One of my aims at the start of the year was to improve my Powershell and scripting skills. I run...
2010-04-01
1,143 reads
Post your responses to the above SQL Aloha Question of the Month in the comments section below (at www.bradmcgehee.com if...
2010-04-01
487 reads
Steve Jones’ (@way0utwest) recent SQLServerCentral editorial, The Missing Certification, has spawned a vigorous debate about what the missing certification should...
2010-04-01
1,428 reads
Some good jokes going around, and the few I wrote for SQLServerCentral went over well. There was a good one...
2010-04-01
566 reads
As we close out the First Quarter of 2010 it is time to review progress made on the Goals I...
2010-04-01
511 reads
I bet most of you use some type of diff/comparison tool at work. Probably one for the file system and...
2010-04-01
543 reads
I’ve always said that it didn’t matter what the database was. If it could do the job then it’s worth...
2010-04-01
419 reads
I recently came across an interesting script to help show index info and usage. As I began to dissect the...
2010-03-31
2,007 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