Why I Don’t Like Shared Development Databases
Today, Kendra explains why she doesn't like shared development databases.
2020-01-31
502 reads
Today, Kendra explains why she doesn't like shared development databases.
2020-01-31
502 reads
2020-01-30
230 reads
Today, Kendra Little explains why a query may run faster the second time you run it.
2020-01-29
2,503 reads
2020-01-28 (first published: 2018-12-06)
629 reads
2020-01-27
222 reads
As JSON documents becomes increasingly widely used, as the interface between application and database, Phil Factor reckons it's about time JSON Schema was built-in to SQL Server, alongside XML Schema.
2020-01-25
308 reads
2020-01-24
311 reads
2020-01-22 (first published: 2019-01-31)
402 reads
Today, Grant Fritchey talks about the two paths to expertise for database professionals and why it’s hard to really know if someone is an expert.
2020-01-17
415 reads
Today Kendra discusses the advantages of using a command line interface for Git.
2020-01-16
422 reads
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...
By Steve Jones
Only a little break for me. I’m actually heading to Las Vegas today for ...
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