Taking Advantage
I read SQLBatman's post about his first week as an MVP, and it really resonated well with me. I think...
2009-04-14
648 reads
I read SQLBatman's post about his first week as an MVP, and it really resonated well with me. I think...
2009-04-14
648 reads
I currently write the editorial for the PASS Connector which is published every two weeks as part of my role...
2009-04-13
295 reads
I’ve often described SQL Server to people new to databases as a data pump.
Just like a water pump, you...
2009-04-13
1,237 reads
Time has flown by since my last update, busy time at work and struggling to get that done and find...
2009-04-13
399 reads
Yesterday, I drove the Smart down to Burlington/Colchester, Vermont to meet up with MVP Roman Rehak and speak to the local...
2009-04-13
1,084 reads
I've been writing a lot about networking lately and my efforts to learn/leverage LinkedIn, and along the way taken a...
2009-04-13
828 reads
I'm embarking on another book project. Not writing this time, but tech editing again. I tech edited a book last...
2009-04-13
624 reads
I currently write the editorial for the PASS Connector which is published every two weeks as part of my role...
2009-04-12
317 reads
What's my name?
Fully qualified domain name that is. One of the little gotchas I encountered when rewriting my database mirroring...
2009-04-11
9,503 reads
Often I tell clients better to much memory than too little. This can be applied to any database engine essentially....
2009-04-11
1,429 reads
In Part 1, we saw how ‘Vamana’ represents vectors as nodes, connects them with...
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....
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