Who is the best person for the job?
Sometimes it is hard to admit that you are not the best person for the job that is presented to you.
2020-04-09
122 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
122 reads
Today we have a guest editorial from Ben Kubicek as Steve is away from the office. It is hard to be humble, but it is needs to learn something new.
2019-11-27 (first published: 2016-11-07)
477 reads
The point of this article is that only service accounts and/or specific network sql admin accounts should have sysadmin rights.
2019-03-11
1,578 reads
2019-01-07
139 reads
2018-11-15
706 reads
In larger shops with multiple database servers, it is very important to have consistency.
2018-10-12
166 reads
It is important to train new people, so what is the best way to go about doing it?
2018-09-06
378 reads
When we risk failure, we also have the opportunity for success, so try something new today.
2018-08-30
86 reads
In many ways job titles matter, just not when telling a stranger what you do for work.
2018-07-30
537 reads
Normalization is important for relational databases, but sometimes too much of a good thing can be bad.
2018-07-23
2,510 reads
By Steve Jones
It’s Prime Day. A few of my recommendations, since I want to do some...
With Fabric Mirroring, Microsoft is promoting a nice and appealing story for operational reporting...
If you’ve been watching AI roll through the data community and thinking, “this seems...
Comments posted to this topic are about the item SQL Art, Part 4: Happy...
Comments posted to this topic are about the item Concurrency and Baseline Control: Level...
Comments posted to this topic are about the item Spending Time in the Office
I have this code on SQL Server 2022. What happens when it runs all at once?
DROP TABLE IF EXISTS dbo.Commission GO CREATE TABLE dbo.Commission (id INT NOT NULL IDENTITY(1,1) CONSTRAINT CommissionPK PRIMARY KEY , salesperson VARCHAR(20) , commission VARCHAR(20) ) GO INSERT dbo.Commission ( salesperson, commission) VALUES ( 'Brian', 12 ), ( 'Brian', 'None' ) GOSee possible answers