Getting Drive Info Part 1, sp_OA
This blog series will cover several different methods to collect drive information from a Windows server that is running SQL...
2010-06-29
2,659 reads
This blog series will cover several different methods to collect drive information from a Windows server that is running SQL...
2010-06-29
2,659 reads
This is my third in a series of checklists that I am putting together for a new book designed for...
2010-06-29
2,965 reads
We had an unexpected switch last weekend. My boss decided that we were ready to move from the Stack Exchange...
2010-06-29
1,742 reads
The following queries look extremely innocent. However, they are all application killers once the target table grows to more than...
2010-06-28
1,361 reads
After 10 Years, a Move Closer to School and Work
Wow, how moving house interrupts life. I can appreciate we have...
2010-06-28
519 reads
It’s been a busy month for me for PASS activities. I spent almost the entire week last week on PASS...
2010-06-28
705 reads
Thanks to the outstanding efforts of Tim Edwards (twitter | blog), our fearless leader, and the rest of the crew, the PASS...
2010-06-28
904 reads
2010-06-28
691 reads
One of my back burner projects is to setup a local user group.
I'm delighted to now say that this is...
2010-06-28
409 reads
“...And the world is filled with people who can't go to high school, never mind college, and who certainly can't...
2010-06-28
652 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