Free ebooks
From Barnes and Noble. You can get them on a Nook, Blackberry, iPhone/Ipad, or PC. They are offering a few...
2010-05-17
956 reads
From Barnes and Noble. You can get them on a Nook, Blackberry, iPhone/Ipad, or PC. They are offering a few...
2010-05-17
956 reads
Steve Jones talks about encrypting stored procedures and why it's a bad idea. And that it's a feature that should be removed from SQL Server.
2010-05-17
179 reads
There has been quite a debate going on at SQLServerCentral about a DBA journeyman certification. There are a couple good...
2010-05-17
963 reads
Kathi Kellenburger, fellow MVP and friend, pinged me recently for an interview for the Professional Development Virtual Chapter. This is...
2010-05-14
1,625 reads
This Friday's poll asks what changes the community might like to see at SQLServerCentral.
2010-05-14
109 reads
I was getting tired of pre-formatting code in LiveWriter. I love that software, but a couple of the technical things...
2010-05-13
932 reads
This is a test of the plug in “Paste From Visual Studio”. I had this code sitting in SSMS and...
2010-05-13
810 reads
There’s still time to register for the 24 Hours of PASS, a series of 24 one-hour sessions being presented on...
2010-05-12
742 reads
Steve Jones talks about ORM frameworks and the dilemma of using them. They save time, but might not solve all your problems.
2010-05-12
458 reads
I’ve been trying to learn more about the T-SQL changes in SQL Server 2005/2008 over time. I don’t have requirements...
2010-05-11
670 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