Results of PASS Summit 2010 Content Survey Released
A few weeks back PASS sent out a survey to get input on how to shape the 2010 Summit agenda,...
2010-04-22
538 reads
A few weeks back PASS sent out a survey to get input on how to shape the 2010 Summit agenda,...
2010-04-22
538 reads
The year is 1991. Nirvana’s Smells like teen spirit is the must-have album of the year. And everyone who is...
2010-04-22
558 reads
SQLSaturday #49 - Orlando is now live on the SQLSaturday web site. It will be held on October 16th at Seminole...
2010-04-22
406 reads
On April 21 Microsoft announced SQL Server 2008 R2 has been released to manufacturing.
The downloads on Technet/MSDN on May 3....
2010-04-22
406 reads
I was listening to the announcement of SQL Server 2008 R2 yesterday on a call from Microsoft. It was released...
2010-04-22
731 reads
I came across a recent posting about seeing multiple entries in sys.dm_db_index_usage_stats for the same index. This kind of behavior...
2010-04-22
2,107 reads
The DMV for Day 22 is sys.dm_exec_query_memory_grants, which is described by BOL as:
Returns information about the queries that have acquired...
2010-04-22
1,755 reads
The quote about Knowledge, sure it is Albanian quote:
Learn the Knowledge but you'll never get rewarded by the God(All-llah) until...
2010-04-22
1,369 reads
This is an excerpt from my free eBook, Brad’s Sure Guide to SQL Server 2008, which can be downloaded here.
As...
2010-04-22
2,130 reads
I’ve got a couple of speaking engagements coming up during the next few months, and a few others I’m hoping...
2010-04-21
582 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