Code Supply Chain Security
Building software is becoming harder as new attacks try to inject malicious code into products.
2022-10-12
121 reads
Building software is becoming harder as new attacks try to inject malicious code into products.
2022-10-12
121 reads
Steve shares a few things he's learned from customers trying to migrate their systems to cloud computing platforms.
2022-10-10
236 reads
On nights and weekends, I've been playing with Arduino controllers. I have a couple of projects I'm working through (building a robot that can roll around with "eyes" to avoid obstacles). I've also been trying to work with STM32 controllers, because in a lot of ways, they're more powerful than an Arduino. However, I've hit […]
2022-10-08
156 reads
Building a toolbox of useful scripts and code is important for any technology professional.
2022-10-07
269 reads
Some people might seem like they are from the future, but their experience is just shining through.
2022-10-05
172 reads
Steve talks about some of the Intelligent Query Processing improvements in SQL Server 2022.
2022-10-03
259 reads
The user experience from our software is important. Maybe more than many developers realize.
2022-10-01
61 reads
There are advantages of cloud databases when your workload requirements grow. Steve thinks it's useful to learn a bit about the options out there.
2022-09-30
544 reads
Making a connection to the wrong database had disastrous results for Travis-CI.
2022-09-28 (first published: 2018-04-19)
233 reads
2022-09-26 (first published: 2018-03-16)
362 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