The Case for Upgrading
When is it worth upgrading your SQL Server? It's a question Steve Jones explores today.
2015-09-03
227 reads
When is it worth upgrading your SQL Server? It's a question Steve Jones explores today.
2015-09-03
227 reads
2015-09-02
754 reads
It seems the software industry doesn't do a good job of planning and estimating software development efforts.
2015-09-01
190 reads
Does it make sense to avoid FKs for use other architectures in software development? Steve Jones isn't sure a a general rule this is the case.
2015-08-31
336 reads
2015-08-31
294 reads
Steve Jones has a story about what it's like to work with, and without, Version Control Systems.
2015-08-24
173 reads
2015-08-20
180 reads
Putting together a portfolio allows you the chance to showcase what you're good at doing. Steve Jones thinks this might be a good thing for technical people.
2015-08-18
137 reads
Is a software deployment responsible for a plane crash? That's a scary thought.
2015-08-17
121 reads
Phil Factor suspect the NoOps movement is dressing up some old mistakes in fancy new clothes.
2015-08-17
258 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