Finding Checked Out Files in TFS
There may be an easier way, but this was a quick way to find ALL the checked out files in...
2014-06-24
1,463 reads
There may be an easier way, but this was a quick way to find ALL the checked out files in...
2014-06-24
1,463 reads
Retrieve data about size and space used for all the files in the current database with this script.
Some tips on...
2014-06-24
776 reads
No Files For You is another Question Of The Day. I ended up making this one just a little more...
2014-06-24
480 reads
It’s always an honour to be able to speak at an event, but events can be expensive to attend and...
2014-06-24
690 reads
ISSUE : FIX for Data loss in clustered index occurs when you run online build index in SQL Server 2012
Microsoft release...
2014-06-24
895 reads
In order to reduce Tempdb contention one of the best practices is to maintain multiple sized Tempdb data files, matching the...
2014-06-24
1,247 reads
SQL Server Datenbankbesitz: Umfrageergebnisse und Empfehlungen
(en)
You may remember the survey on database ownership which I launched several months ago.
In...
2014-06-27 (first published: 2014-06-23)
2,927 reads
Bad Meetings or Meeting Badly is the editorial of the day today. Looking at it today, I wish I had...
2014-06-23
518 reads
It’s Monday time for this week’s weekly link round-up. If you want to catch these links “live” (so exciting), follow...
2014-06-23
492 reads
Reading, Writing, and Riskmetic is another Question of the Day, this one about how to allow developers to understand performance...
2014-06-23
542 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