TechEd 2010 – BI Keynote – Part 1
The second day’s keynote is by Ted Kummert and focuses on BI.
This keynote is in one of the smaller...
2010-06-08
562 reads
The second day’s keynote is by Ted Kummert and focuses on BI.
This keynote is in one of the smaller...
2010-06-08
562 reads
In the customer demo, a few reports that were built with PowerPivot and Report Builder 3.0, which are helpful to...
2010-06-08
565 reads
It’s a bad idea. Co-locating the BI conference at TechEd has created a lot of confusion and annoyance. If people...
2010-06-08
539 reads
It’s the million dollar question. Literally.
I stopped by the SQL Server area at TechEd in the expo to talk to...
2010-06-08
1,186 reads
The 7th T-SQL Tuesday is upon us and you can read about it on SQL Chicken’s blog. He’s hosting this...
2010-06-08
1,981 reads
I’ll be at TechEd on Monday/Tuesday. Not going to sessions as I don’t have the time to stay there all...
2010-06-07
360 reads
This week Database Weekly has a lot of performance related posts and Steve Jones notes that those are not of much use unless you know you really do have a performance problem.
2010-06-07
176 reads
You need consistent, reliable data. You want data that you can trust.
This is usually data about your transactions, slowly changing...
2010-06-07
566 reads
This is one of my favorite technologies for SQL Server 2008 R2. This session was from Torsten Grabs, the program...
2010-06-07
2,119 reads
It’s a zoo.
Once again wifi sucks, sitting in the keynote room, unable to join the wireless network and get a...
2010-06-07
356 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 Optional Parameter Plan Optimization in...
Comments posted to this topic are about the item AI Experience Gap that we...
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