2021-02-11
398 reads
2021-02-11
398 reads
Using some sort of scripting or automation is important for your career.
2021-02-10
166 reads
2021-02-09
159 reads
One area where AI has found some traction is in the healthcare industry, where is seems to be helping improve care.
2021-02-08
271 reads
I’ve been digging through the 18 years’ worth of articles, editorials, blogs, contests, interviews, promotions, and announcements over at Simple Talk. There are over 5000 posts, and many are quite outdated, especially those announcing beta versions of software or other time-sensitive content. Some articles haven’t seen the light of day for 10 years, yet some […]
2021-02-06
119 reads
Steve ran across a list of interview questions and wonders if it's a good test for an experienced database developer.
2021-02-05
392 reads
Building better software requires some experimentation, but also some learning. Building better software as an organization requires even more.
2021-02-04
311 reads
In your work, are you an artist or a scientist? Steve Jones knows we need to be both, but when is each appropriate?
2021-02-03 (first published: 2014-08-19)
411 reads
The slow pace of Visual Studio development had a number of problems over the years, but Microsoft has dramatically changed the way they build their software for the better.
2021-02-02 (first published: 2014-08-21)
328 reads
Let's Encrypt upgrades their database servers and publishes the details.
2021-02-01
122 reads
Every organization I talk to has the same problem dressed up in different clothes....
By DataOnWheels
I am delighted to host this month’s T-SQL Tuesday invitation. If you are new...
By alevyinroc
Ten years (and a couple jobs) ago, I wrote about naming default constraints to...
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