Learning the G1
One nice thing is that the G1 has a good browser, basically the same technology as the iPhone, so I...
2009-03-06
377 reads
One nice thing is that the G1 has a good browser, basically the same technology as the iPhone, so I...
2009-03-06
377 reads
I saw a great blog post from Brent Ozar about whether or not you are being treated fairly at work....
2009-03-06
537 reads
I just finished reading Just Culture, which talks about the challenges of building a system that encourages people to report...
2009-03-05
342 reads
Once again I was tagged to answer a question. This time by Chris Shaw http://chrisshaw.wordpress.com .
Here is the question: Do...
2009-03-05
577 reads
This week I've been at the Microsoft MVP Summit in Washington State. This is my second summit, and I was...
2009-03-05
1,109 reads
My friend Chris loaned me his copy of eBoot Camp as I'm trying to strengthen what I consider to be...
2009-03-04
374 reads
Question: How do we handle transaction log maintenance for a mirrored database?
This question was asked on a technical discussion group....
2009-03-04
23,521 reads
During the month of February, I participated in the Get Fit in February challenge last month. Along with a few...
2009-03-04
632 reads
One of the things that we have to re-learn when going from SQL Server 2000 to 2005/2008 is that objects...
2009-03-04
6,678 reads
There are hundreds of post on this topic but I just ran into this problem recently so I thought I...
2009-03-04
1,533 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