SQL Server 2008 R2
The RTM date is out for SQL Server 2008 R2. At the UK Tech Days it was released as May...
2010-04-16
624 reads
The RTM date is out for SQL Server 2008 R2. At the UK Tech Days it was released as May...
2010-04-16
624 reads
On Aprill 2010 is available the SQL Server 2008 R2 Update for Developers Training Kit. This training kit inlcudes:
Presentations (22)Demos...
2010-04-16
721 reads
A few weeks back I was in Chicago for three days for work. I’ve been through the airport a couple...
2010-04-16
960 reads
The DMV for Day 15 is sys.dm_os_performance_counters, which is described by BOL as:
Returns a row per performance counter maintained by...
2010-04-15
1,491 reads
After having a bit of a tough time in the April OPASS meeting (read about it here), due to not...
2010-04-15
306 reads
During my last SQLLunch, Introduction to SSIS, I was asked an interesting question by one of the attendees. He asked,...
2010-04-15
965 reads
One of my 2010 goals is to really increase my SSRS knowledge. I’ve used SSRS in a cursory manner over...
2010-04-15
694 reads
I’ve been waiting on this for a while, and missed the announcement that it was available, happened to see that...
2010-04-15
550 reads
In my last blog post I indicated that I would be adding learning PowerShell to my list of goals. I...
2010-04-15
5,049 reads
SQLSaturday #38 is coming up on May 8th, 2010, back at the same location as in previous years at the...
2010-04-15
493 reads
I’m excited to announce the release of a new open-source project that fully automates...
One of my favourite features of SQL Server 2022 was the T-SQL Snapshot Backups....
By Steve Jones
I have said and written this many times: Redgate Software is the type of...
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