Feedback
Corporate management often asks for feedback and buy-in with their ideas and programs. Why don't they get it?
2008-02-06
66 reads
Corporate management often asks for feedback and buy-in with their ideas and programs. Why don't they get it?
2008-02-06
66 reads
Employee compensation is more than just salary. Steve Jones talks about how you might look at building more effective compensation plans for workers.
2008-02-05
103 reads
Less CIOs are reporting to CEOs this past year. Is that a problem? Steve Jones offers some comments.
2008-02-04
60 reads
2008-02-01
346 reads
The bimonthly update looks at a compressed air car, the X-Prize, daily rentals, and hybrid pickups.
2008-01-31
176 reads
If we will get a new version of SQL Server every 3 years, how can we make the process smoother.
2008-01-30
239 reads
SQL Server 2008 has been delayed and Steve Jones thinks the entire process of building this version has been poorly handled.
2008-01-29
450 reads
Common sense guidelines, removing local administrators and too much money in IT. Steve Jones comments on a few headlines from the week.
2008-01-28
87 reads
Ever worked on a software project where you didn't get all the requirements? One where the functions and features change in midstream? Steve Jones comments on some possibilities on why this happens.
2008-01-28
102 reads
2008-01-25
84 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 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