No More SQL Server Installs
Today, Steve wonders when we'll stop installing SQL Server on a host machine.
2019-03-26
1,281 reads
Today, Steve wonders when we'll stop installing SQL Server on a host machine.
2019-03-26
1,281 reads
If you have been working with SQL Server long enough, you have probably been involved with a SQL Server 2000 to 2005 upgrade. It was painful for many shops due to the deprecation of some features like DTS and the removal of old-fashioned comma joins with the plus operator. It was worth the pain as […]
2019-03-25
1,282 reads
Steve has a few thoughts on what is worse than telling your boss about a data breach.
2019-03-25
166 reads
2019-03-22
142 reads
Bad managers are everywhere, but we can improve and help them with some ideas from other companies. That's if we, as an organization, value our staff.
2019-03-21 (first published: 2015-10-19)
299 reads
This week's poll asks about virtualization in your environment. Let us know if you are moving your SQL Server to virtual machines.
2019-03-20 (first published: 2015-05-08)
199 reads
The biggest government hack ever occurred recently. At least until the next one happens.
2019-03-19 (first published: 2015-10-20)
316 reads
A minor disaster in Colorado reminds Steve about the need to prepare, and think about the failure points in our preparations.
2019-03-18
88 reads
A new version of an existing application doesn't always provide an upgrade.
2019-03-18
111 reads
2019-03-15
137 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