Microsoft SQL Server “Most Valuable Professional” MVP
Today I received an email notifying me that I have been awarded the Microsoft “MVP” award. An excerpt from Microsoft’s...
2014-07-01
1,375 reads
Today I received an email notifying me that I have been awarded the Microsoft “MVP” award. An excerpt from Microsoft’s...
2014-07-01
1,375 reads
On June 24th, Dell Software gave me the privilege of presenting Subqueries For Superheroes as part of their Experts Perspective...
2014-07-01
934 reads
Randomized color report? So help my CODE!
Writing a Reporting Services report can be challenging, making you use the most of...
2014-07-01
1,679 reads
by Steve Bolton
…………If all goes according to plan, my blog will return in a few weeks with two brand new...
2014-07-01
705 reads
From the very first SQLSaturday event that I have helped to create (SQLSaturday #78 Portugal), I have always desired to...
2014-06-30
521 reads
2014-06-30
4 reads
2014-06-30
3 reads
2014-06-30
5 reads
2014-06-30
9 reads
In this session Prakash will walk through the process he has implemented to alleviates many of the pain points for...
2014-06-30
1,068 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