2020-02-19 (first published: 2019-03-14)
470 reads
2020-02-19 (first published: 2019-03-14)
470 reads
Database encryption is hard, and somewhat controversial. Steve thinks we ought to do a better job of it.
2019-03-13
74 reads
Technical debt can cripple software development, much like financial debt hurts individuals and organizations. Steve wants to know if you measure your debt today.
2019-03-12
106 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,536 reads
Phil Factor argues that very few processes, even in well-established businesses, mimic the dreamy clarity and autonomy of a microservice.
2019-03-11
156 reads
We sometimes need to think differently about different situations. Steve notes that we might approach the way we solve problems in new ways.
2019-03-08
180 reads
2019-03-07
100 reads
Google and Microsoft have plans for dealing with data incidents. Steve thinks you should as well.
2019-03-06
72 reads
It seems that many companies are implementing AI into their systems. Steve notes that this isn't always a good idea.
2019-03-05
86 reads
2019-03-04
105 reads
By HeyMo0sh
Learning any kind of theory is easy, but adapting FinOps and watching it rescue...
By Vinay Thakur
As discussed introduction of Always Encryption blog and initial Encryption at rest as TDE...
By Vinay Thakur
Transparent Data Encryption(TDE): TDE was initially introduced in SQL Server 2008 Enterprise Edition; this...
Comments posted to this topic are about the item The day-to-day pressures of a...
Comments posted to this topic are about the item The Problem Isn't Always Your...
Comments posted to this topic are about the item Identity Defaults
What happens when I run this code?
CREATE TABLE dbo.IdentityTest
(
id int IDENTITY(10) PRIMARY KEY,
somevalue VARCHAR(20)
)
GO
See possible answers