2019-03-04
111 reads
2019-03-04
111 reads
This week Steve is wondering about the use of schemas for security or other purposes.
2019-03-01
499 reads
2020-02-06 (first published: 2019-02-28)
383 reads
Today Steve gives reasons why he thinks the RDBMS is often better than a NoSQL database of any sort.
2019-02-27
90 reads
Data warehouses and lakes are often loaded from other data, so should they be immutable?
2019-02-26
808 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
80 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
64 reads
A company is letting companies trade vacation for payments against student loan debt.
2019-02-22
72 reads
No matter what the reason you have sensitive information, you need to treat it carefully.
2019-02-21
62 reads
2019-02-20
62 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