Checking Up on Vendors
Being able to audit the actions others take on your systems is important to Steve, especially when working in the cloud.
2021-05-10
167 reads
Being able to audit the actions others take on your systems is important to Steve, especially when working in the cloud.
2021-05-10
167 reads
There was a recent discussion in the forums here at SQL Server Central regarding the difficulties presented by the constantly shifting technology landscape. The core question was, how on earth do you master stuff? Especially, how do you master things when they're both new and constantly changing? Honestly, you don't. I mean, you can, but […]
2021-05-08
254 reads
Today Steve wonders what advice you might give someone starting out their career in technology.
2021-05-07
103 reads
The use of cloud databases is growing, and Azure SQL Database is one of the more popular ones.
2021-05-05
280 reads
Steve has a few thoughts on software development and coding today when working in teams and trying to keep the entire solution in your head.
2021-05-03
526 reads
The idea that software engineers might be better with no-code tools is a direction Steve thinks is misaligned with the problem. We should help developers learn to be better.
2021-05-01
179 reads
Documentation may not be something we aspire to do, but it is a valuable skill.
2021-04-30
426 reads
Criminal groups using ransomware are working together, which is bad news for all organizations.
2021-04-29
243 reads
2021-04-28
107 reads
A company decides to move to the cloud and outsource database administration.
2021-04-27
114 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