Upgrade Your Laptop to Solid State Drive
Saw an announcement in Eweek about this, so went looking and found this review of the Imation SSD Upgrade Kit....
2009-07-15
567 reads
Saw an announcement in Eweek about this, so went looking and found this review of the Imation SSD Upgrade Kit....
2009-07-15
567 reads
I am in the process of creating a new blog, but I am having difficulty coming up with a good...
2009-07-15
1,203 reads
Recently, a fellow DBA showed me a set of documentation on a commercially available product. This is a product people...
2009-07-15
1,788 reads
There may be some people wondering why I go by the name @unclebiguns on Twitter. I am basing this on...
2009-07-15
399 reads
Last night I attended, along with about 20 others, the latest and greatest OPASS meeting. I got there early to...
2009-07-15
535 reads
I currently write the editorial for the PASS Connector which is published every two weeks as part of my role...
2009-07-15
427 reads
I've been quiet as of late, pretty much ever since i went to Bethany Summer Youth Camp (BSYC) as a...
2009-07-15
752 reads
2009-07-15
648 reads
Cross posted from the SQLSaturday blog
Though few see it, we also maintain a full set of admin tools for the...
2009-07-14
539 reads
After reading several pages of comments on this posting, I'm taking a stab at helping Canadian Unity on my beloved...
2009-07-14
3,726 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