Losing The Security Game
Losing the security game is no fun when data is involved. Steve points out some things you should be doing.
2019-10-21
263 reads
Losing the security game is no fun when data is involved. Steve points out some things you should be doing.
2019-10-21
263 reads
Phil Factor on the difficult task of guarding against the theft of data from within an organization.
2019-10-19
223 reads
2019-10-18
401 reads
The rise of attacks is something Steve thinks will trigger more network protection, something data professionals will need to work with.
2019-10-17
208 reads
One skill that's useful to develop is the ability to learn things on your own. Often with a little help, but not too much.
2019-10-16
231 reads
Is it better to copy and distribute data or centralize it? Steve has a few thoughts today.
2019-10-15
264 reads
As we grow and evolve in our careers, we face new challenges all the time. Steve highlights on of those that some tech workers worry about today.
2019-10-14
294 reads
2019-10-12
241 reads
We tend to keep data around for a long time. Today Steve Jones is looking to see how long you've kept your databases around.
2019-10-11 (first published: 2015-10-02)
331 reads
Today Steve asks you to be a part of the change you'd like to see in our professional organization.
2019-10-10
153 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