Let’s Play, “Why did it do that?”
On my current project I decided to be flexible and allow the use of Linq to SQL to try to...
2010-05-13
276 reads
On my current project I decided to be flexible and allow the use of Linq to SQL to try to...
2010-05-13
276 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
Had this on my list todo list, upgrade my laptop that just had plain old SQL 2008 on it. The...
2010-05-13
617 reads
In April, I ran a Question of the Month that asked, “What advice would you offer a novice DBA in...
2010-05-13
982 reads
SQL Server Azure, fully relational cloud database solution, is new possibility of the database administration and maintenance. I'm not going...
2010-05-13
1,072 reads
First, I would like to thank all that have attended and supported the SQL Lunch during our first year. We...
2010-05-13
696 reads
For the third year in a row, IndyTechFest will offer free training for SQL Server DBAs and Developers, .NET Developers,...
2010-05-12
582 reads
by Abi Chapagai – Saturday, May 08, 2010
I have recently set up database mail in SQL Server 2008 in production SQL...
2010-05-12
37,836 reads
Ever come across a scary error in the SQL Server log when running CHECKDB against your databases. The error looks...
2010-05-12
524 reads
Every day for the next couple of weeks, I aim to highlight one of SQL Server 2008’s new features, simply...
2010-05-12
784 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