2015-02-18
594 reads
2015-02-18
594 reads
We still have problems with SQL Injection. Steve Jones has a few thoughts on why.
2015-02-17
311 reads
2015-02-16
78 reads
Experience matters in setting your salary, but Steve Jones reminds us there are different types of experience, and there's more to life than money.
2015-02-16 (first published: 2010-08-31)
1,095 reads
Steve Jones talks about starting a new job and the need to get up to speed quickly, perhaps by being prepared on day 1.
2015-02-12
226 reads
How can we ship safe, and ship often? Steve Jones has a few comments on the need for better engineering.
2015-02-11
90 reads
Chris Testa-O'Neil on the origins of SQL Bits and the joys of community events.
2015-02-10
152 reads
In which Phil Factor casts doubts on 'programming policies'. For certain, any IT team development requires plenty of methods of working that maximise productivity, but coding standards and ‘best practices’ have to be treated with caution. Programming rules can’t replace professional judgement
2015-02-09
210 reads
Inspired by the movie with the same name, Steve Jones has a Friday poll about inspiration and ideas.
2015-02-06 (first published: 2010-08-06)
206 reads
Today we have a guest editorial from Andy Warren with a few hints on how you can continue to be proactive as a DBA.
2015-02-05
201 reads
By Steve Jones
We have multiple teams (8) working on Redgate Monitor. Some work on the Standard...
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...
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