Speaking at SQL Server Days 2014
I am absolutely delighted to share the great news that I have been selected as one of the speakers for...
2014-07-04
636 reads
I am absolutely delighted to share the great news that I have been selected as one of the speakers for...
2014-07-04
636 reads
IN CONGRESS, July 4, 1776.
The unanimous Declaration of the thirteen united States of America,
When in the Course of human events,...
2014-07-04
648 reads
“JSON” (Javascript Object Notation) is Open standard to transmit data between endpoints. It is light weighted than XML, that’s why...
2014-07-03
3,484 reads
Here’s the raw feedback from my submissions for the Summit. To those who wrote the feedback for me (and all...
2014-07-03
714 reads
If it were not for the SQL Server community, I would not be where I am at with my career...
2014-07-03
748 reads
This past week, I was awarded with the Microsoft MVP 2014 for SQL Server award. This is my sixth award...
2014-07-03
592 reads
This post explains how to monitor a multiple services on a group of servers with alternate credentials.
This script will allow...
2014-07-03
702 reads
This post explains how to monitor a multiple services on a group of servers with alternate credentials.
This script will allow...
2014-07-03
1,087 reads
The Midlands PASS Chapter will hold its next meeting on July 10. We meet at MicroStaff IT in Cayce, SC....
2014-07-03
465 reads
Do you always need a demo?
Is a demo always needed?
One of my more popular presentations I have been doing as...
2014-07-03
680 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