July SCSUG Meeting
First, I wanted to post a reminder that the July SCSUG meeting has been moved to this coming Monday, July...
2010-07-08
617 reads
First, I wanted to post a reminder that the July SCSUG meeting has been moved to this coming Monday, July...
2010-07-08
617 reads
One of the things I have to do every month is process payments for the authors. It’s my job to...
2010-07-08
328 reads
For those of us who love to get our hands on the latest and greatest shiny new things, the wait...
2010-07-08
371 reads
I had the opportunity to serve on the Program Committee for the 2010 PASS Summit. My job was rating and...
2010-07-08
338 reads
I'm going to try and do a better job of announcing free training and learning opportunities. With that said, there's...
2010-07-08
707 reads
I have been procrastinating this evening, I have several blog posts that I want to write but the football is...
2010-07-08
602 reads
I’ve been scouring my notes (old & new), wading through all my previous research and unearthing advice, tips & tricks that have...
2010-07-08
386 reads
During a recent call I was talking with someone about achieving a career goal (coaching in itself, though unplanned) and...
2010-07-08
766 reads
I saw a post recently by someone asking how to get a database to be suspect. They said they had...
2010-07-08
608 reads
Microsoft has made the Community Technology Preview (CTP) of SQL Server 2008 SP2 available for download. This is Build 3798,...
2010-07-08
1,209 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