2020-01-02
330 reads
2020-01-02
330 reads
2020-01-01
86 reads
Today is the last day of 2019, and the last day of the 2010 decade. I'm still somewhat amazed by the fact that we're entering the 2020s and we still don't really have flying cars. We're well past 2001 and 2010, and still not much space exploration, though the growth in computing power and AI/ML […]
2019-12-31
208 reads
2019-12-30
184 reads
January 1st is the beginning of a new year thanks to Julius Caesar and Pope Gregory XIII. This date is somewhat arbitrary, and many religions and cultures celebrate their own beginning of a new year at different times. Even though these celebrations don’t fall at the same time, I think the sentiment is similar. The […]
2019-12-28
125 reads
Today Steve asks if there is anything you'd want as a gift that would make your job better.
2019-12-27
291 reads
A new technique developed by Microsoft is designed to help AI/ML models get trained with minimal data.
2019-12-26
171 reads
2019-12-25
77 reads
Steve notes that math operations are places where many developers have made mistakes in the past. A little test code might help here.
2019-12-23
308 reads
This week Grant talks about the need for change and growth to adapt to the changing world.
2019-12-21
167 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