Upcoming Presentation for Professional Development Chapter
I’ll be presenting “Building a Comprehensive Professional Development Plan” on May 13th via Livemeeting to members of the PASS Professional...
2010-05-03
695 reads
I’ll be presenting “Building a Comprehensive Professional Development Plan” on May 13th via Livemeeting to members of the PASS Professional...
2010-05-03
695 reads
The Issue
Being involved in PASS and the SQL Server community via blogging and Twitter, I get to see and hear...
2010-05-03
1,039 reads
A couple weeks ago I wrote about testing the LinkedIn polling capability, putting up this poll:
The response rate wasn’t great,...
2010-05-03
322 reads
Well, I managed to finish up my series that featured a DMV query every day during the month of April....
2010-05-03
2,913 reads
I saw Joe Webb’s post, and then Gethryn Ellis’ post as well on when SQL Server last restarted. It’s something...
2010-05-03
453 reads
I know that you have seen it yourself too. That forum or blog post that contains “advice” that is daft,...
2010-05-02
580 reads
SQLSaturday #39 NYC Presentations available online....
If you were at SQLSaturday in NYC and want to see it again, or, you...
2010-05-02
959 reads
The WinServer 2008 Core Edition was the server that you cannot install the SQL Server 2008. The Win Server 2008...
2010-05-02
1,518 reads
I had a very interesting bug that had me running around for over a week. Turns out the bug was...
2010-05-01
876 reads
TempDB Internals: TempDB is very important DB in sql server, generally sql server automatically takes care of the storage management...
2010-05-01
1,864 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 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