Dinosaur Databases
Do you work on a database system that's a dinosaur? A recent article called out RDBMSse as dinosaurs, but Steve Jones doesn't think that's correct.
2010-06-24
426 reads
Do you work on a database system that's a dinosaur? A recent article called out RDBMSse as dinosaurs, but Steve Jones doesn't think that's correct.
2010-06-24
426 reads
I don’t travel a lot, but with the success of SQL Saturday, I find myself heading out on the road...
2010-06-24
1,330 reads
I saw Paul Kenny at the first Business of Software conference, and then had dinner with him, chatting about sales....
2010-06-23
789 reads
Andy Warren (blog| Twitter) sent me a link recently to a piece written by Kalen Delaney on the recent SQL...
2010-06-23
759 reads
There was quite a bit of debate over the use of schemas recently on the Internet. Steve Jones talks about some of the reasons why you might want a schema, and a few reasons why you might not.
2010-06-22
650 reads
I hope you’ve seen the note from Andy Warren (Blog | Twitter) on a PASS Spring Event, and there’s another writeup...
2010-06-22
1,130 reads
Steve Jones comments on a few things that can help you, and are worth keeping in mind as you interact with people.
2010-06-21
255 reads
There has been a lot of talk about moving to cloud based computing, and cloud based services. Steve Jones comments on what this might mean today.
2010-06-21
320 reads
Someone posted a note recently asking about how to detect the changes in a sequence. Say you have a table...
2010-06-21
4,140 reads
I’ve given quite a few presentations, one keynote with another to come, and attended many more. I’ve read a few...
2010-06-18
1,199 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