A New SQL Server Vulnerability
A new vulnerability for SQL Server is covered by a number of patches this week.
2022-06-18
757 reads
A new vulnerability for SQL Server is covered by a number of patches this week.
2022-06-18
757 reads
2022-06-10
495 reads
2022-06-03
475 reads
2022-06-01
489 reads
2022-05-20
532 reads
2022-04-13
408 reads
2022-04-06
474 reads
2022-04-05 (first published: 2022-04-04)
448 reads
There are many ways to work more efficiently, but tracking and saving your work might be one of the best.
2022-03-28
135 reads
2022-03-14
544 reads
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...
One of my favourite features of SQL Server 2022 was the T-SQL Snapshot Backups....
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