SQL Server 2008 R2 is available now...
Just for info that SQL Server 2008 R2 (32bit & 64bit) is available now and you can download the trial
http://bit.ly/18gCbc
*...
2010-04-21
643 reads
Just for info that SQL Server 2008 R2 (32bit & 64bit) is available now and you can download the trial
http://bit.ly/18gCbc
*...
2010-04-21
643 reads
For the last two years or so, in one capacity or another I have been running SQL Server in virtual...
2010-04-21
666 reads
We just put the site up, starting a little earlier than last year, and over the course of this week...
2010-04-21
501 reads
Most of us have some general rules we live by, and I’ve often thought it would be a lot easier...
2010-04-21
728 reads
SQL Server 2008 R2, it comes with new editions and lot of new features, also supporting the SQL Azure & PowerPivot...
2010-04-21
1,384 reads
The DMV for Day 21 is sys.dm_os_ring_buffers, which is helpfully NOT described by BOL as:
The following SQL Server Operating System–related...
2010-04-21
2,585 reads
Introduction
I am one of those people that believe that anything worth doing is worth having a script to do it....
2010-04-20
557 reads
Back on March 30, I wrote about a Stepping Stone Certification that seems to be missing between the MCM and...
2010-04-20
751 reads
A town so big they named it twice.
If you’re not excited about SQL Saturday in NYC this weekend… why not?...
2010-04-20
520 reads
There was some conversation on Twitter about how to get notification when new Cumulative Updates are released for SQL Server...
2010-04-20
975 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