Schema Security
This week Steve is wondering about the use of schemas for security or other purposes.
2019-03-01
519 reads
This week Steve is wondering about the use of schemas for security or other purposes.
2019-03-01
519 reads
Today Steve gives reasons why he thinks the RDBMS is often better than a NoSQL database of any sort.
2019-02-27
107 reads
Data warehouses and lakes are often loaded from other data, so should they be immutable?
2019-02-26
819 reads
One thing I learned while working as a database administrator over 17 years is the importance of teamwork across departments. Many times, we have to rely on network and SAN administrator to make changes to their environments in order to make SQL Server run more efficiently. There are times where the storage and network create […]
2019-02-25
68 reads
Will employee data become a target of hackers? It's likely more a movie plot than reality, at least, Steve hopes so.
2019-02-25
83 reads
A company is letting companies trade vacation for payments against student loan debt.
2019-02-22
76 reads
No matter what the reason you have sensitive information, you need to treat it carefully.
2019-02-21
75 reads
2019-02-20
70 reads
Steve talks about the level of engineering effort we need in software development.
2019-02-19
82 reads
Today we have a guest editorial from Andy Warren as Steve is away on vacation. This was originally published on Dec 23, 2014. I was reflecting recently on my first real IT job. It was a small-ish company when I joined it, perhaps a hundred employees or so, and still using a mishmash of software […]
2019-02-18 (first published: 2014-12-23)
217 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