Microsoft Partner Network explained
I’m sure in your travels in the field of IT, you have seen or heard of companies being called a...
2011-09-23
1,492 reads
I’m sure in your travels in the field of IT, you have seen or heard of companies being called a...
2011-09-23
1,492 reads
All the videos for the sessions at 24 Hours of PASS are available for free. Check the session schedule for...
2011-09-22
565 reads
Frequently I see a bit of confusion from business users when using an analytic grid on a dashboard in PerformancePoint. ...
2011-09-21
669 reads
Imagine you join a company, and there is an existing SSAS database that contains a few cubes that are working nicely. You...
2011-09-19
834 reads
If you are a developer and are on your own, or working for a company that does not have an...
2011-09-16
960 reads
With CTP3 for SQL Server Denali available, a lot of us want to play with all the new cool features, as well as...
2011-09-14
1,738 reads
With CTP3 for SQL Server 2012 (code name of “Denali”) available, a lot of us want to play with all the new...
2011-09-14
1,657 reads
As a SQL Server DBA, usually the largest databases in size and in number of users that I had to manage was an ERP...
2011-09-12
841 reads
I was having a problem getting the display folder to work for a calculation in SSAS. Turns out, it will...
2011-09-09
1,389 reads
Over the years, I have accumulated a set of questions that I usually ask the placement firm about a contract position...
2011-09-07
1,167 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