The Release Schedule
Coordinating the release of software among all the groups involved can be quite a chore. Steve Jones comments on some of the challenges.
2008-09-18
239 reads
Coordinating the release of software among all the groups involved can be quite a chore. Steve Jones comments on some of the challenges.
2008-09-18
239 reads
Meaningful change often requires information collection, processing, retrieval and distribution. As database professionals, that's our bag. So what can we do to help things along?
2008-09-17
187 reads
A new data mining thrilled from Jeffrey Deaver has Steve Jones concerned about the centralization of data mining.
2008-09-16
181 reads
Steve Jones talks about a company looking to write all their stored procedures using the CLR in SQL Server. Is this a good idea?
2008-09-15
265 reads
A bug in the SQL Server 2008 upgrade process has Steve Jones questioning the coding practices at Microsoft.
2008-09-15
80 reads
2008-09-12
117 reads
Are database professionals liable for the security of their data? Should they be? Some think so, but Steve Jones thinks this is a bad idea and we might need protection as data professionals.
2008-09-11
86 reads
As database professionals, we know that we are responsible for the security and integrity of the data in our systems. But Steve Jones wonders if you know what legal responsibilities you might have.
2008-09-10
141 reads
Where is the dividing line between work time and personal time? As more and more employees get new phones, such as the Blackberry and iPhone, is the line becoming too blurred? Are there legal implications?
2013-06-24 (first published: 2008-09-09)
302 reads
More and more technology workers are being asked to sign non-compete agreements as a condition of their employment. But is that fair? Steve Jones has a few thoughts.
2008-09-08
165 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