Lock Pages in Memory
It is generally recommended that 'lock pages in memory' be enabled for your SQL Servers to prevent the OS paging...
2010-06-25
9,658 reads
It is generally recommended that 'lock pages in memory' be enabled for your SQL Servers to prevent the OS paging...
2010-06-25
9,658 reads
I’ve heard this before, it came up in the Tufte seminar I took, and it also was something that grated...
2010-06-25
1,105 reads
I’ve been a judge in this contest for the last 3 years, and each years we’ve had really good finalists,...
2010-06-25
822 reads
If you’re a blogger or a twitterer or a SQL speaker or PASS volunteer, you do it because you have...
2010-06-25
562 reads
One of the first roadblocks many developers run into when using SQL Server for the first time is firing off...
2010-06-24
2,620 reads
A Twitter user asked for a script to remove old backups, and I had one I built back in February,...
2010-06-24
1,133 reads
Today I did a webinar on MDX solutions. For those of you interested you can grab the slides here and...
2010-06-24
1,215 reads
I don’t travel a lot, but with the success of SQL Saturday, I find myself heading out on the road...
2010-06-24
1,330 reads
Today we’ll try to finish up by looking at a couple of the semi-interesting parts of the code in this...
2010-06-24
648 reads
Nominations opened today and will run through July 21st. Whether you’re planning to be a candidate or not, I hope...
2010-06-24
556 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