You Don’t Need Log Backups
You don’t need log backups. You don’t. They aren’t required for SQL Server to function.
The place when you don’t need...
2010-08-25
747 reads
You don’t need log backups. You don’t. They aren’t required for SQL Server to function.
The place when you don’t need...
2010-08-25
747 reads
When can you modify a database that supports some third party product? Steve Jones has a few thoughts and warns you to be careful.
2010-08-24
149 reads
How do you triage and rate the bugs that come in for software? How should Microsoft do this for SQL Server. Steve Jones has a few comments.
2010-08-23
113 reads
I went to host the Red Gate SQL Source Control webinar recently and had a snag. I downloaded the GoToWebinar...
2010-08-23
846 reads
This Friday Steve Jones talks about your career, and training, and what you are doing about it.
2010-08-20
308 reads
Are there some things that are beyond automation in your company? Steve Jones comments on the difficulty of changing things with automation in some cases.
2010-08-19
286 reads
At SQL Saturday #28, I was surprised to be given the speaker evaluations after my first session. One of the...
2010-08-19
724 reads
I saw a short talk from Dan Pink a few months back from this year’s TED conference. It’s very cool,...
2010-08-18
1,062 reads
I read Stuart
Ainsworth’s blog post this morning, and I thank Stuart for posting
something. However, there’s an implication in...
2010-08-18
1,725 reads
Well I have to say I’m surprised. It’s always hard to get a rejection, and I’m not quite sure what...
2010-08-18
3,248 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