Getting Inspired with SQL Someday
Recently, I caught my during a kickoff with a new client saying, “Hello I am John, and I love SQL....
2012-05-10
503 reads
Recently, I caught my during a kickoff with a new client saying, “Hello I am John, and I love SQL....
2012-05-10
503 reads
There are a lot of ways you could implement this but in this case I will be using the following…
ASP.Net...
2012-05-10
195 reads
Ran across this recently, YourLogicalFallacyIs.com is a site that lists all the ways you can apply logic badly, and they’ve...
2012-05-10
870 reads
If you don’t change the version number of your .NET project output every time you create a setup package, you...
2012-05-10
1,745 reads
I will be presenting two sessions at the Rocky Mountain Tech Trifecta in Denver on May 19, 2012. This is...
2012-05-10
851 reads
Hello Dear Reader! I'm coming to you live from the wonderful SQL Rally in Dallas Texas. I have two sessions...
2012-05-10
504 reads
SQL Server stores all mails and attachments in msdb database. To avoid unnecessary growth of msdb database you should remove...
2012-05-10
1,252 reads
Had a nice lunch at On The Border at Orlando International before my flight, used that time to finish some...
2012-05-10
630 reads
Long before it was announced that coming August 4, 2012, SQLSaturday #158 returns to the NYC (<< see recent announcement, New York...
2012-05-10
1,263 reads
Change Tracking (CT) and Change Data Capture (CDC) were both added to SQL Server in 2008. At first it seems...
2012-05-10
48,979 reads
In Part 1, we saw how ‘Vamana’ represents vectors as nodes, connects them with...
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....
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