Tips on Getting Hired – Part 1
I was recently asked for advice about seeking a job, a request we all get from time to time. In...
2009-06-15
729 reads
I was recently asked for advice about seeking a job, a request we all get from time to time. In...
2009-06-15
729 reads
Last Friday I got the official notice that I've been selected to present a community session at the 2009 PASS...
2009-06-15
473 reads
A week ago I spoke at the Pensacola SQLSaturday event to about 30 people. A few drifted in late, so...
2009-06-15
919 reads
Over the weekend I received the great news that I've been selected to present a new session, Gather SQL Server...
2009-06-15
357 reads
This is part 1 of my 29 part series called Better Know A SSIS Transform. Hopefully you will find the...
2009-06-15
1,698 reads
I didn’t attend, but wanted to get this written down somewhere!
I’m just catching up on email, Ken Starnes said all...
2009-06-15
544 reads
I received my notification from the PASS Program Committee on Friday evening,
and found out that I will not be...
2009-06-15
605 reads
There’s a contest going on at PASS looking for answers to “Best Thing I Learned at PASS”. I don’t want...
2009-06-15
1,073 reads
Way back on May 19 I wrote about my search for a new laptop bag to replace my somewhat tattered...
2009-06-14
721 reads
Michelle Ufford (aka SQLFool) is leading the first SQLSaturday in Iowa at the University of Iowa in Iowa City on...
2009-06-14
763 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