SQL SERVER – FIX: Msg 4353 – Conflicting File Relocations Have Been Specified for File. Only a Single WITH MOVE Clause Should be Specified for Any Logical File Name
In this blog we would learn how to fix Msg 4353 - ...
2019-05-24
In this blog we would learn how to fix Msg 4353 - ...
2019-05-24
Learn how you can configure clean and size management for your SSIS catalog database.
2019-05-23
14,976 reads
2019-05-23
988 reads
2019-05-23
4x14 vcpus, 1472 total GB vRAM (368 GB per vNUMA n...
2019-05-23
2019-05-23
Comprehensive Database Performance Health Check Cl...
2019-05-22
2019-05-22
I recently had a very simple and interesting error received while I was working with Docker and Persistence Storage for my upcoming SQL Server Performance Tuning Practical Workshop. The...
2019-05-20
Open source NAS isn’t appropriate for every use case, but it can be ideal for lab deployments, smaller workgroups or active archive data.
2019-05-20
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