A New Type of Colocation Facility
Microsoft is working on their generation 4 data centers, which might be a great idea for companies if they can implement a private cloud.
2013-01-31
186 reads
Microsoft is working on their generation 4 data centers, which might be a great idea for companies if they can implement a private cloud.
2013-01-31
186 reads
Google has a new project to use a "database of everything" to help you learn more.
2013-01-30
201 reads
Audits for technology groups can be time consuming and stress employees out. An article Steve Jones finds says an insurance company only needed 30 minutes to ace their audit.
2013-01-29
193 reads
Phil Factor on his renewed appreciation for the "customer-focused" culture of the Data Platform Group at Microsoft
2013-01-28
82 reads
There is likely still a lot of 32-bit software out there, even as the x86 platform appears to be dying away. Steve Jones notes that you'll likely be dealing with 32/64 bit issues in your career.
2013-01-28
121 reads
This Friday Steve Jones takes a break from serious technical discussions. With the Oscar nominees announced there were lots of films left out of the awards. Are there some of these you'd recommend?
2013-01-25
103 reads
Today Steve Jones talks about the future of software development and how it might not require developers to know anything about servers.
2013-01-24
167 reads
Why is it so hard to build better software? Steve Jones looks at recent problem in iOS that seems silly.
2013-01-23
215 reads
Encryption keys for services in the cloud should be maintained by the customer, according to Steve Jones. It's actually a good idea for all of your data.
2013-01-22
134 reads
A develop should be a glass-half-full kind of guy, at least according to Steve Jones. This editorial was originally published on April 15, 2008. It is being re-run as Steve is on holiday.
2013-01-21 (first published: 2008-04-15)
264 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