Tagged: The Desert Island Scenario
I was tagged by Scary DBA and recent MVP awardee Grant Fritchey with the latest viral question:
“So You’re On A...
2009-06-11
1,355 reads
I was tagged by Scary DBA and recent MVP awardee Grant Fritchey with the latest viral question:
“So You’re On A...
2009-06-11
1,355 reads
Early last week, my church suffered a lightning strike that did quite a bit of damage (relatively speaking) to computer and...
2009-06-11
838 reads
The point of this post is to cleary explain how the combination of the use of data definition language for your temporary...
2009-06-11
1,125 reads
While I was in Pensacola last weekend, I sat next to Andy Warren and I was telling him about getting...
2009-06-11
699 reads
This is part two of a series on writing a technical article. The advice might apply to non-technical articles, but...
2009-06-11
1,681 reads
I am at times an early adopter of technology. I like newer, better tools, but they have to be something...
2009-06-10
415 reads
I hope this isn't real, but I suspect it is.
If this image disappears, I promise not to sue.
2009-06-10
619 reads
I got my results from Karla Remail on the SQLSaturday talk over the weekend. I was surprised since typically other...
2009-06-10
346 reads
I currently write the editorial for the PASS Connector which is published every two weeks as part of my role...
2009-06-09
342 reads
As background, I've never been a fan of multiple instances. It's a useful thing to have available and I use...
2009-06-09
397 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