Whatever happened to Database Table Refactoring?
Phil Factor ponders why most people lost their initial enthusiasm for refactoring databases iteratively, in parallel with the evolutionary design of the rest of the system.
2015-09-21
183 reads
Phil Factor ponders why most people lost their initial enthusiasm for refactoring databases iteratively, in parallel with the evolutionary design of the rest of the system.
2015-09-21
183 reads
2015-09-16
316 reads
Is there a way to tell who the good developers are? Steve Jones has a few thoughts on why this is an issue.
2015-09-15
302 reads
2015-09-14
145 reads
2015-09-11
256 reads
2015-09-10
285 reads
2015-09-08
160 reads
This week Steve Jones looks at the idea of combining some NoSQL concepts inside of SQL Server.
2015-09-07
297 reads
Are you a do-it-all DBA, or do you specialize in one aspect of database work?
2015-09-07
315 reads
This Friday Steve Jones looks at the topic of defaults and whether you use the model database to adjust yours.
2015-09-04
99 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