SQL Server In-Memory Optimized database backup and restore in action
A SQL Server backup and restore strategy is an essential process to safeguard and protect critical data. The vital role...
2018-07-06
898 reads
A SQL Server backup and restore strategy is an essential process to safeguard and protect critical data. The vital role...
2018-07-06
898 reads
Migrating a wordpress blog comes with its various set of challeneges. This installment covers magically changing percent symbols during that migration.
Related Posts:
Summiting that Technical Challenge January 9, 2018
T-SQL...
2018-07-06
14 reads
Conquering Challenges
Months ago, I posted an article about some of the challenges encountered while migrating from one service level to...
2018-07-06
753 reads
Two years running, I will be presenting at SQL Saturday Indy and SQL Saturday Louisville this year again! Come see my session on Getting Started with Machine Learning
2018-07-06
29 reads
One of the tasks I find myself doing on a fairly regular basis is running SSMS as a different Windows...
2018-07-06 (first published: 2018-06-28)
2,691 reads
What is a Domain Independent Cluster? Did you know that you can have a Windows cluster that is a domain independent cluster and run a […]
The post Domain Independent...
2018-07-05
15 reads
What is a Domain Independent Cluster? Did you know that you can have a Windows cluster that is a domain...
2018-07-05
538 reads
What is a Domain Independent Cluster? Did you know that you can have a Windows cluster that is a domain independent cluster and run a SQL Server Availability Group...
2018-07-05
20 reads
While the text of this post contains good information on SSMS object filters, I highly recommend watching this week’s video...
2018-07-05 (first published: 2018-06-26)
2,503 reads
This is a short series of posts on the courses I took with Brent Ozar. I actually completed the courses...
2018-07-05 (first published: 2018-06-28)
2,719 reads
By Steve Jones
My life has some crazy travel stretches for sure. Between speaking, office visits, customer...
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...
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