Nice Shout-Out From Brad McGehee
I was browsing Twitter today, and I noticed some retweets linking to a blog post that Brad McGehee (blog | twitter)...
2010-06-01
580 reads
I was browsing Twitter today, and I noticed some retweets linking to a blog post that Brad McGehee (blog | twitter)...
2010-06-01
580 reads
Invitation for T-SQL Tuesday #007
New hotness
Welcome back to the blog party known as T-SQL Tuesday. I’m honored to be hosting...
2010-06-01
598 reads
If you are planning to submit any sessions to the 2010 PASS Summit, the deadline is Saturday, June 5, 2010....
2010-06-01
401 reads
While looking over my SQL Server Error logs, I noticed a small flurry of error messages like you see below,...
2010-06-01
1,271 reads
A while back I had a developer come to me complaining that every time they ran a large delete statement on a certain database the delete would fail with...
2010-06-01
8 reads
A while back I had a developer come to me complaining that every time they ran a large delete statement on a certain database the delete would fail with...
2010-06-01
29 reads
Introduction
A while back I had a developer come to me complaining that every time they ran a large delete statement...
2010-06-01
1,003 reads
My friend Andy Leonard posted yesterday about the process of getting selected for one of the coveted slots as a...
2010-06-01
390 reads
For years, ever since I was first required to be on call, I’ve made it a habit to check my...
2010-06-01
631 reads
Last week, Microsoft released a slightly improved version of Robotics Developer Studio that supports Visual Studio 2010, and adds the...
2010-06-01
1,479 reads
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...
I’m excited to announce the release of a new open-source project that fully automates...
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