T-SQL Tuesday #7 - StreamInsight
The 7th T-SQL Tuesday is upon us and you can read about it on SQL Chicken’s blog. He’s hosting this...
2010-06-08
1,981 reads
The 7th T-SQL Tuesday is upon us and you can read about it on SQL Chicken’s blog. He’s hosting this...
2010-06-08
1,981 reads
Over this past weekend, I decided to build a new general purpose workstation from parts, with a goal of getting...
2010-06-08
913 reads
TechEd 2010 started today, June 7, and will run through Thursday, June 10, 2010. In the past TechEd has run...
2010-06-08
990 reads
SSIS-DTS Package Search 2.0.18 has been released. This is a bug fix release that addresses a problem with the search...
2010-06-08
818 reads
We all know that indexes on tables help performance. However, sometimes too much indexing could affect performance as well. One...
2010-06-07
602 reads
SUNDAY 6/6/2010
While sitting in the conference center for Tech Ed 2010, I thought, why not blog about my trip. Even...
2010-06-07
496 reads
The S3OLV monthly meeting is being held this Thursday. We will be meeting at the same location and time as...
2010-06-07
490 reads
Today I am finally getting around to the review of the first chapter as promised. I talked about the book...
2010-06-07
803 reads
This is one of my favorite technologies for SQL Server 2008 R2. This session was from Torsten Grabs, the program...
2010-06-07
2,119 reads
Sorting results in a tabular style report is a common request from business users. Sometimes, they want to see the...
2010-06-07
851 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