Agile Job Descriptions
Steve ends his week of career thoughts with a look at the job descriptions that we often use to decide if we want to apply for a job.
2019-11-15
283 reads
Steve ends his week of career thoughts with a look at the job descriptions that we often use to decide if we want to apply for a job.
2019-11-15
283 reads
Business Intelligence and Data Science are linked, and complementary. As Steve notes, both can help your organization make better decisions based on data.
2019-11-14
415 reads
Today Steve talks about a new way of achieving some certification and education from Microsoft.
2019-11-13
271 reads
2019-11-11
355 reads
Steve highlights a few items from a busy Microsoft and SQL Server news week.
2019-11-09
237 reads
Computer networks are critical for our work, but if they get clogged with new types of data, we might have a problem.
2019-11-08
255 reads
2019-11-07
230 reads
Steve is missing the PASS opening keynote, but he has a few predictions for the day.
2019-11-06
171 reads
Today Steve Jones looks at the need to log data from an application or process. Are there good and bad ways to design the structures to log information?
2019-11-05 (first published: 2015-09-25)
644 reads
2019-11-04 (first published: 2015-11-13)
429 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