Query Store Questions From The Field
I have had several Query Store questions come in from customers lately. Some of the questions stemmed from things read...
2017-05-16
383 reads
I have had several Query Store questions come in from customers lately. Some of the questions stemmed from things read...
2017-05-16
383 reads
I have had several Query Store questions come in from customers lately. Some of the questions stemmed from things read...
2017-05-16
97 reads
In this video I talk about Trace Flag 1117 and how it was designed to help keep data file growth...
2017-05-16 (first published: 2017-05-05)
1,340 reads
In this video I talk about Trace Flag 1117 and how it was designed to help keep data file growth...
2017-05-05
102 reads
Discovery I ran across an issue where I had just configured database mail on a new server, went to send...
2016-07-13 (first published: 2016-07-05)
1,890 reads
Discovery I ran across an issue where I had just configured database mail on a new server, went to send...
2016-07-05
87 reads
Let me start off with a disclaimer that these thoughts on the January PASS board meeting are my own as...
2016-04-18
503 reads
Let me start off with a disclaimer that these thoughts on the January PASS board meeting are my own as...
2016-04-18
86 reads
Have you ever had the need to query Active Directory right out of SQL Server using native TSQL? There are...
2016-03-21 (first published: 2016-03-15)
3,817 reads
Have you ever had the need to query Active Directory right out of SQL Server using native TSQL? There are...
2016-03-15
150 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