Microsoft Releases SQL Server 2008 SP1 Cumulative Update 9
Microsoft has released SQL Server 2008 SP1 Cumulative Update 9 (CU9). The KB Article for the CU is located here....
2010-07-21
899 reads
Microsoft has released SQL Server 2008 SP1 Cumulative Update 9 (CU9). The KB Article for the CU is located here....
2010-07-21
899 reads
In case you missed it the Program Session (60 min. long) selections are now available on the 2010 PASS Summit...
2010-07-21
524 reads
Sometimes, its just the smallest of details that can make all the difference. For example, on my test system (see...
2010-07-21
3,396 reads
Join Adam Jorgensen, tomorrow on the SQL Lunch to learn about Dimensional Modeling. Go to SQL Lunch and add this...
2010-07-21
826 reads
Tomorrow at 11:00 AM EST I will be giving a talk on SQL Server 2008 R2 for the DBA. Here...
2010-07-21
511 reads
I keep seeing lots of debate about Android v the iPhone 4. I have friends talking about how cool Windows...
2010-07-21
1,172 reads
I’ll be speaking for the SQL PASSDatabase Administration Virtual Chapter next week. It’ll be on July 28 at 12 PM...
2010-07-21
612 reads
Another positive side benefit from moving has been the re-arrangement of the now two small libraries at home: one sorted...
2010-07-21
626 reads
Welcome once more to the Miskatonic branch of SQL University. Please try to concentrate. I realize the whipoorwills singing outside...
2010-07-21
678 reads
WOW! A couple of weeks ago, I announced that I would be offering a few MSDN Ultimate subscriptions to unemployed...
2010-07-21
595 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