2014-06-12
12 reads
2014-06-12
12 reads
The San Francisco SQL Server User Group – June 11 2014 Uploading presentation DAC for Today’s session….
2014-06-12
625 reads
Did the list of states in the title catch your eye? That’s the list of states where PASS is trying...
2014-06-11
524 reads
Status and Name Please is my latest Question of the Day at SQLServerCentral. This is a fairly easy question, but...
2014-06-11
402 reads
I’ve already spoken about source controlling database using Visual Studio Online and Red-Gate SQL Source Control in this post. The described kind...
2014-06-11
1,365 reads
ETL Process
Reporting databases need to consolidate data from across many applications within an organization. In order to successfully pull data...
2014-06-11
1,524 reads
PASS Summit
PASS Summit is the world’s largest and most intensive technical training conference for Microsoft SQL Server and BI professionals....
2014-06-10
683 reads
Join SQL Server professionals from around the world for free online technical training and networking year round. PASS Virtual Chapters...
2014-06-10
623 reads
Introduction
This script can be used for exporting specified performance counter values from multiple remote target servers to CSV file. The...
2014-06-10
630 reads
Introduction
This script can be used for exporting specified performance counter values from multiple remote target servers to CSV file. The...
2014-06-10
1,535 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 Server-Level Table sizes
Comments posted to this topic are about the item Optional Parameter Plan Optimization in...
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