The Need for New Technology
Do we need new technologies to handle the large scales of complex data analysis? Steve Jones thinks SQL Server can handle the load.
2010-12-02
117 reads
Do we need new technologies to handle the large scales of complex data analysis? Steve Jones thinks SQL Server can handle the load.
2010-12-02
117 reads
Today Steve Jones talks about the reasons why you might change jobs, and the fact that you aren't alone. However be careful about changing jobs, and make an attempt to stay if you can.
2010-12-01
281 reads
I updated the iPad tonight to iOS 4.2. I had no particular reason to upgrade, but I saw a few...
2010-12-01
537 reads
I guess I might need to go back to RAID. From the Windows Team Blog, there is a decision to...
2010-12-01
446 reads
Worthy of an editorial, but this is a pretty good use-case for why SQL Azure might make sense. This is...
2010-12-01
403 reads
When it rains it pours.
Last week my Nano died. It won’t hold a charge, or at least it won’t...
2010-12-01
447 reads
Performance is always one of the most important things a DBA can learn to deal with. It's also one of the more nebulous arts to learn. Today Steve Jones shares some thoughts on how we might better help people learn.
2010-11-30
391 reads
Up through SQL Server 2008 R2 database mirroring has been limited to a single mirror for each database. While that...
2010-11-30
5,483 reads
Coming back after a week off, even a holiday week when traffic is relatively low, is no fun. I have...
2010-11-29
1,479 reads
I highly encourage people to blog. I know that not everyone is a writer, but I think that blogging helps...
2010-11-29
1,597 reads
I’m excited to announce the release of a new open-source project that fully automates...
One of my favourite features of SQL Server 2022 was the T-SQL Snapshot Backups....
By Steve Jones
I have said and written this many times: Redgate Software is the type of...
Comments posted to this topic are about the item Optional Parameter Plan Optimization in...
Comments posted to this topic are about the item AI Experience Gap that we...
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