Vote for the Exceptional DBA of the Year
Starting today, you can vote for the 2010 Exceptional DBA of the Year. All of the nominations have been reviewed...
2010-06-23
471 reads
Starting today, you can vote for the 2010 Exceptional DBA of the Year. All of the nominations have been reviewed...
2010-06-23
471 reads
Error 25602 When Creating an Extended Events Session: a Security Risk
I came across an interesting issue recently when helping someone...
2010-06-23
3,614 reads
On the 19th/20th May (last month) the Professional Association of SQL Server (PASS) held its second 24 hours of PASS...
2010-06-23
729 reads
I saw Paul Kenny at the first Business of Software conference, and then had dinner with him, chatting about sales....
2010-06-23
789 reads
Andy Warren (blog| Twitter) sent me a link recently to a piece written by Kalen Delaney on the recent SQL...
2010-06-23
759 reads
?? ????, ??????? ?? ??? ???? ????? ????? ????? ?? ? Database-?? ???????. ????? ??????? ?? ?????? ????? ????? ????????????...
2010-06-23
455 reads
Today we move over to the web side of things. I put this together with VS 2010, and it’s a...
2010-06-23
579 reads
My thanks to everyone in attendence and PASS AppDev VC for inviting me to speak. I’ll post a link to...
2010-06-23
993 reads
As a part of a new book project, I am putting together a series of checklists that DBAs can use...
2010-06-23
1,224 reads
One common, but often undetected issue that I see with SQL Server databases is a very high number of virtual...
2010-06-22
3,475 reads
When I put together the invitation for T-SQL Tuesday #202, I wasn't sure what...
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...
Comments posted to this topic are about the item Server-Level Table sizes
Comments posted to this topic are about the item Optional Parameter Plan Optimization in...
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