SQL Saturday Dallas–BI Edition (again!)
I’m happy to announce that the North Texas SQL Server User Group will be hosting our fourth SQL Saturday event...
2012-06-22
727 reads
I’m happy to announce that the North Texas SQL Server User Group will be hosting our fourth SQL Saturday event...
2012-06-22
727 reads
I’m happy to announce that the North Texas SQL Server User Group will be hosting our fourth SQL Saturday event...
2012-06-22
408 reads
As you may surmise from my previous post I’m back from vacation. I was as unplugged as I’ve been in...
2012-06-21
569 reads
With the release of the PASS Summit 2012 schedule, I’m pleased to announce that I have been selected to present...
2012-06-21
839 reads
Note that THIS talk, and a ton more, is the subject of Sean’s precon at SQL Saturday #163 Dallas this...
2012-06-21
940 reads
PASS SQLSaturday is a training event for SQL Server professionals and those wanting to learn about SQL Server. Please note that...
2012-06-21
764 reads
PASS Summit is the world's largest and most intensive technical training conference for Microsoft SQL Server community for the SQL...
2012-06-21
637 reads
Date: Thursday, July 10
Time: 11:00 a.m. - 12:00 p.m. Central Time
Virtual Chapter: DBA Fundamentals
Event URL: http://www.livemeeting.com/cc/usergroups/join (Meeting ID TW8M35, Entry Code...
2012-06-21
765 reads
Who will be the Exceptional DBA of 2012? I’ll be judging.
It’s hard to believe that it’s time for the Exceptional...
2012-06-21 (first published: 2012-06-11)
2,579 reads
I run into a bug recently with SQL Server 2012. I believe this exists in SQL Server 2008 as well....
2012-06-20
1,109 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