Upgrading SQL Server Central
It's time to look at an instance upgrade for SQL Server Central. Or is it? Steve shares some thoughts about the process and decision making.
2022-12-14
312 reads
It's time to look at an instance upgrade for SQL Server Central. Or is it? Steve shares some thoughts about the process and decision making.
2022-12-14
312 reads
Learning to efficiently manage time in a team is hard. Steve has a few ideas today, based on a book.
2022-12-12
178 reads
If you're an experienced, knowledgeable, seasoned (I won't say old), SQL Server data professional, and you choose to use Trace Events (Profiler), more power to you. That's it. That's all I have to say. Do what you think best. I'm never, ever (again), going to second guess you. Further, my apologies for ever having done […]
2022-12-10
239 reads
Is the stuff we do in our off hours truly relaxing or just taking up time?
2022-12-09 (first published: 2017-03-31)
234 reads
2022-12-07 (first published: 2017-03-21)
175 reads
2022-12-05 (first published: 2017-04-11)
228 reads
Steve reminds us about being charitable if we are fortunate enough to do so.
2022-12-03
54 reads
2022-12-02
86 reads
This week Steve Jones looks at moving the port numbers of your instances for a bit of security.
2022-11-25 (first published: 2017-01-13)
224 reads
Artificial Intelligence can help humans, both in diagnosis, but also in teaching medical professionals.
2022-11-23
149 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