Updating Certifications
Microsoft is retiring some certifications and offering others. Steve has a few thoughts on this.
2020-03-13
264 reads
Microsoft is retiring some certifications and offering others. Steve has a few thoughts on this.
2020-03-13
264 reads
Steve Jones highlights the importance he sees for data professionals in the containerization of software.
2020-03-11
293 reads
2020-03-10
337 reads
With progress thwarted by a committee of panjandrums, will T-SQL forever remain in the doldrums? So wonders Phil Factor.
2020-03-09 (first published: 2017-07-10)
467 reads
Today Steve asks what reasons a developer has for using stored procedures.
2020-03-06
542 reads
A security breach at Microsoft is disconcerting, especially when they don't share details.
2020-03-05
290 reads
2020-03-04
344 reads
Artificial Intelligence systems might dramatically change our world, but they need lots of help and work to get better.
2020-03-03
144 reads
For a time, it seemed that everyone wanted to build a Hadoop system. The world has changed, and that's not as popular an idea as it used to be. Today, Steve has a few thoughts.
2020-03-02
536 reads
Amazon is providing automatic redaction of PII data in there transcription service.
2020-02-29
280 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