SQLSaturday #39 in NYC - Countdown - Event Preview!
Happy Monday, everyone! The internet is a buzz! I have never seen so much energy and enthusiasm as SQLSaturdays, and...
2010-04-19
1,046 reads
Happy Monday, everyone! The internet is a buzz! I have never seen so much energy and enthusiasm as SQLSaturdays, and...
2010-04-19
1,046 reads
I hear that registration is over 350 so far, with seats still available – but register soon! I’m driving up with...
2010-04-19
508 reads
You can only have one mirror of a SQL Server database in SQL Server 2005/2008. I researched that last year...
2010-04-19
647 reads
I’ve had this on my list to write about for a while, just didn’t have a great example until this...
2010-04-19
502 reads
The DMV for Day 19 is sys.dm_os_wait_stats, which is described by BOL as:
Returns information about all the waits encountered by...
2010-04-19
2,055 reads
Spring fever is running hot here in Parker, Colorado, after a long winter. Last year, I put in a Square...
2010-04-19
796 reads
As I have mentioned before, I have a TED 5000 electric power monitor installed in my house that monitors and...
2010-04-19
577 reads
I just finished reading “The next wave of technologies” by Phil Simon. A great read! It proposes a...
2010-04-18
28 reads
I just finished reading “The next wave of technologies” by Phil Simon. A great read! It proposes a new Enterprise 2.0 - not related to earlier Web 2.0 related...
2010-04-18
12 reads
Introduction
In any distributed environment, database synchronization between two different locations or different servers’ is very essential for mission critical applications....
2010-04-18
2,255 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