Which Work Is Suited for In-Person?
What is the best way to use an office? Or is there even a best way? Steve asks the question today.
2022-07-15
156 reads
What is the best way to use an office? Or is there even a best way? Steve asks the question today.
2022-07-15
156 reads
2022-07-09
181 reads
We used to work in offices, now we work at home. Do we need a third space? Steve does.
2022-04-18
187 reads
Video chat is how many of us see our colleagues every week. It's not a great system, but maybe it can get better.
2022-01-31
101 reads
The future of work is uncertain, but not everyone is ready for remote work to continue.
2021-09-20
303 reads
2021-05-17
230 reads
There are many things we may miss about the office, but one of them is the chance to interact with and impress management.
2021-04-23
136 reads
2021-04-22
89 reads
A year of remote work has made life hard, and harder to get a break from the same environment you are in most of the time.
2021-04-16
94 reads
Companies are starting to bring people back to the office. Microsoft has announced their policy, and Steve wonders if more will follow.
2021-04-12
129 reads
When I put together the invitation for T-SQL Tuesday #202, I wasn't sure what...
By Steve Jones
My life has some crazy travel stretches for sure. Between speaking, office visits, customer...
In Part 1, we saw how ‘Vamana’ represents vectors as nodes, connects them with...
Comments posted to this topic are about the item Server-Level Table sizes
Comments posted to this topic are about the item Optional Parameter Plan Optimization in...
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