Teambuilding and Bonding
Steve Jones attended a day out from the Red Gate offices recently and he talks about the value of those experiences.
2012-05-10
175 reads
Steve Jones attended a day out from the Red Gate offices recently and he talks about the value of those experiences.
2012-05-10
175 reads
Amazon now offers SQL Server 2008 R2 in their RDS service. It's an easy way to get working with SQL Server with a minimal investment.
2012-05-09
305 reads
An outage at SQLServerCentral reminded Steve Jones that it's not "if" a disaster will occur, but "when" it will occur that should have you preparing for a disaster at some point in the future.
2012-05-08
128 reads
Security is becoming more of an issue for mobile devices as we store and access more information on them all the time.
2012-05-07
107 reads
Steve Jones talks about security, and the developer's role in ensuring secure code.
2012-05-07
345 reads
This Friday Steve Jones is looking to see how you might like to improve your educational materials. With the success of our Stairway Series, we are looking to find better ways to teach people about SQL Server.
2012-05-04
332 reads
Steve Jones talks about XML and how it will be more and more important for DBAs to understand this in the future.
2012-05-03
728 reads
How responsible should developers be for their code? Facebook has an interesting way of looking at their engineers' performance.
2012-04-30
273 reads
Having noticed a very low rate of migration to the latest version of SQL Server, Brad McGehee asks - when will you upgrade to 2012?
2012-04-30
753 reads
Database security needs to improve, and while SQL Server continues to get better, there is more work to do. However there are plenty of security issues outside the database that also need to be addressed.
2012-04-26
192 reads
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...
I’m excited to announce the release of a new open-source project that fully automates...
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