Being Responsible for Data
There is an interesting court case on who is responsible for the data being posted on the Internet. Steve has a few thoughts today.
2023-03-29
272 reads
There is an interesting court case on who is responsible for the data being posted on the Internet. Steve has a few thoughts today.
2023-03-29
272 reads
2023-03-29
360 reads
2023-03-27 (first published: 2023-03-24)
449 reads
2023-03-27
315 reads
2023-03-27
450 reads
Today’s coping tip is to discover the joy in the simple things in life. This is the last coping tip for now. It’s been 3 years, and I hope...
2023-03-24
15 reads
I have been experimenting a bit with graph databases, trying to learn more about them. One of the platforms I wanted to experiment with was RedisGraph. This post looks...
2023-03-24 (first published: 2023-03-23)
55 reads
Zero downtime used to be more important in Steve's job, but lately it seems customers aren't as concerned.
2023-03-24
121 reads
I delivered my talk on Architecting Zero Downtime Deployments yesterday at VS Live Las Vegas 2023. It went fairly well, even though I ran some incorrect code somewhere. Apologies...
2023-03-24 (first published: 2023-03-23)
50 reads
Today’s coping tip is to focus your attention on the good things you take for granted. My life is great. I used to say perfect, but a few struggles...
2023-03-23
8 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...
I am annoyed. We have a CMS server that has hundreds of servers saved...
Comments posted to this topic are about the item The Problem Isn't Always Your...
What happens when I run this code?
CREATE TABLE dbo.IdentityTest
(
id int IDENTITY(10) PRIMARY KEY,
somevalue VARCHAR(20)
)
GO
See possible answers