SQL Saturday Tirana (Albania)
I’m very exciting to announce that we will have next SQL Saturday event in Albania, Tirana, which is going to...
2014-06-19
866 reads
I’m very exciting to announce that we will have next SQL Saturday event in Albania, Tirana, which is going to...
2014-06-19
866 reads
Have you ever created a Hyper-V virtual machine and later needed to change the size of the disk on the...
2014-06-26 (first published: 2014-06-19)
3,214 reads
SQL Server has some handy features: one of those features is dbmail, which I tend to use less until I’ve...
2014-06-19
865 reads
As I mentioned in my original post, Exploring Excel 2013 as Microsoft’s BI Client, I will be posting tips regularly...
2014-06-23 (first published: 2014-06-18)
4,299 reads
Let’s face it, none of Information Technology is easy. Oh yeah, there are those few geniuses that have an absolute...
2014-06-23 (first published: 2014-06-18)
5,178 reads
Having
applied dozens and dozens of Service Packs to various SQL Server clusters, I
still never cease to learn that not everything...
2014-06-20 (first published: 2014-06-18)
10,503 reads
Creating an alias for a SQL Server is fairly easy and there are several ways to do it. Configuration Manager...
2014-06-20 (first published: 2014-06-18)
2,342 reads
As I’ve started digging deeper into using Azure the need to automate tasks (turn off all VMs, turn on all...
2014-06-19 (first published: 2014-06-18)
3,130 reads
The past couple of months has been very busy at home and at work so I have fallen behind a...
2014-06-18
706 reads
I’ve been going through the process of upgrading from SQL Server 2012 to SQL Server 2014 and I’ve hit a bug when running snapshots. Any snapshot that was in...
2014-06-18
14 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