Building The SQLSaturday Orlando Marketing Plan–Part 8
One of things I wish PASS provided was at least one template for an event flyer, something that is basically...
2014-05-18
506 reads
One of things I wish PASS provided was at least one template for an event flyer, something that is basically...
2014-05-18
506 reads
SharePoint 2013 External Data Connections
SharePoint 2013 External Data Connections are part of the Business Connectivity Services (BCS) that can be...
2014-05-18
1,262 reads
PASS Business Analytics Conference is not a new kid on the block anymore – happening for the second year in a...
2014-05-18
254 reads
Originally posted on Journey to SQL Authority with Pinal Dave:
I have to admit, Spiderman is my favorite superhero. The most...
2014-05-17
785 reads
Someone recently asked me through LinkedIn how much it would cost to implement a BI project with Microsoft tools. This...
2014-05-17
989 reads
The latest book that I finished reading was The Tipping Point, written by the Malcolm Gladwell. I would recommend this...
2014-05-16
186 reads
Photo credit – Husso
I’ve always been a fan of the feeling when I find an old blog post that’s got just...
2014-05-16
713 reads
It might or might not surprise you that I learned to code in Basic. I suppose my first real attempt...
2014-05-16
702 reads
A quick plug today for Statistics Parser by Richie Rump, a free web site that takes the output from “set...
2014-05-16
1,075 reads
One of the easiest ways to increase query performance on your database is making sure your statistics are up-to-date. Statistics...
2014-05-16
457 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