Microsoft at the PASS Summit
One of the reasons that I think the PASS Summit fits well in Seattle is the support that they get...
2009-08-13
922 reads
One of the reasons that I think the PASS Summit fits well in Seattle is the support that they get...
2009-08-13
922 reads
We’ve just posted our core guidelines for technical content on sqlpass.org. The short story is there are three main ways...
2009-08-12
877 reads
I currently write the editorial for the PASS Connector which is published every two weeks as part of my role...
2009-08-12
418 reads
For the one or two you that are not reading Buck Woody’s blog (and why aren’t you), you may not...
2009-08-12
705 reads
One of my clients called saying they were receiving the following error when trying to access a database: "Error 952...
2009-08-12
7,057 reads
My turn to answer Chris Shaw’s questions “Do I feel I have a reliable SAN solution?” and “Describe Database Mirroring...
2009-08-12
640 reads
When I first started by career in IT and SQL Server about 10 years ago I lived in a small...
2009-08-12
463 reads
I received my evaluation summary from the SQL Saturday event in Baton Rouge earlier this month. This was the first...
2009-08-12
762 reads
So, what should I talk about next? There's so much going on in the world of SQL Server (ie: 2008,...
2009-08-12
735 reads
Reminder: The Baton Rouge Area SQL Server User Group will be broadcasting its user group via live meeting. If you...
2009-08-12
458 reads
When I put together the invitation for T-SQL Tuesday #202, I wasn't sure what...
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...
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