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
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
Microsoft scheduled a conference call this morning, and I jumped on since I was laid up in bed with a...
2010-04-21
1,695 reads
FINALLY!
It’s not like Don Gabor had the article done in January or anything…oh wait. He did have the article done...
2010-04-21
699 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
If you weren't aware, Microsoft held a BI telelconference today which announced the release to manufacturing (RTM) of SQL Server...
2010-04-21
1,197 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
The DMV for Day 20 is sys.dm_exec_cached_plans which is described by BOL as:
Returns a row for each query plan that...
2010-04-20
1,096 reads
My History with PASS
Over the last two years I have become more involved in the SQL Server community through attending...
2010-04-20
617 reads
Found Ninite while browsing a list of efficiency tools on PCWorld.com. It’s a one stop super installer, you run through...
2010-04-20
631 reads
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...
One of my favourite features of SQL Server 2022 was the T-SQL Snapshot Backups....
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