Interested in Boosting the Performance of SQL Server 2008 Analysis Services?
Microsoft has published a white paper called SQL Server 2008 White Paper: Analysis Services Performance Guide that you might find...
2009-02-06
904 reads
Microsoft has published a white paper called SQL Server 2008 White Paper: Analysis Services Performance Guide that you might find...
2009-02-06
904 reads
Over the years, I have dealt with a lot of third-party applications (and their vendors) that use SQL Server as...
2009-02-06
2,846 reads
I've been busy with other projects and haven't had time to focus as much as I'd like on my SQLSaturday...
2009-02-05
488 reads
Last week I posted Update #3 that discussed my first board meeting, but I didn't have time to cover my...
2009-02-05
404 reads
As part of its advance notification, Microsoft has released the list of security bulletins that should be coming our way...
2009-02-05
831 reads
This is in the presentation I've given a few times, but I thought it made some sense to put these...
2009-02-05
1,820 reads
The fifth annual South Florida Code Camp is coming up this Saturday, Feb 7, 2009, at Devry University, 2300 SW...
2009-02-04
284 reads
There are only a few more days before the call for speaker for European PASS ends, on Saturday, February 7th,...
2009-02-04
465 reads
If you're thinking about taking a job as a manager there are two questions that will help you quickly understand...
2009-02-04
957 reads
One of the neat things about the Kindle is that you can change font sizes. It's mentioned in many reviews,...
2009-02-04
683 reads
I’m excited to announce the release of a new open-source project that fully automates...
One of my favourite features of SQL Server 2022 was the T-SQL Snapshot Backups....
By Steve Jones
I have said and written this many times: Redgate Software is the type of...
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