Teams That Ship
Running software teams isn't as easy as it may seem, and the way you manage a startup is different than a mature organization. Steve has a few comments on the process one angel investor implements.
2020-04-14
114 reads
Running software teams isn't as easy as it may seem, and the way you manage a startup is different than a mature organization. Steve has a few comments on the process one angel investor implements.
2020-04-14
114 reads
2020-04-13
197 reads
2020-04-11
157 reads
2020-04-10
179 reads
Sometimes it is hard to admit that you are not the best person for the job that is presented to you.
2020-04-09
131 reads
You have more time to earn that MCSA, MCSE, or MCSD, thanks to Microsoft and the pandemic.
2020-04-08
209 reads
2020-04-07
215 reads
In this time of crisis, it's up to each of us to make a difference in some way.
2020-04-06
216 reads
Steve wonders today about the need to compete in our jobs, especially with employers that view us as resources.
2020-04-02
133 reads
Imagine how coding might take place if cursors were as efficient as complex SELECT statements.
2020-04-01
369 reads
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...
I’m excited to announce the release of a new open-source project that fully automates...
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