Code Supply Chain Security
Building software is becoming harder as new attacks try to inject malicious code into products.
2022-10-12
119 reads
Building software is becoming harder as new attacks try to inject malicious code into products.
2022-10-12
119 reads
The user experience from our software is important. Maybe more than many developers realize.
2022-10-01
58 reads
We often live with our early decisions on technology, which can be a challenge over time.
2022-09-12
155 reads
2022-06-27
167 reads
These days we often have multiple applications that need to exchange data in use by customers. Steve shares a few thoughts on his recent experiences.
2022-06-13
136 reads
Building software can seem like a crazy process, especially to a developer who joins a project.
2022-04-25
256 reads
A backlog is important for software development, and Steve has a few thoughts on how to add things to the backlog.
2022-04-08
242 reads
The way different generations use computers could affect how we built software tools.
2022-03-14
125 reads
Is DevOps and Agile better than waterfall? Steve has a few thoughts after a recent experience.
2022-02-07
227 reads
Every year I'm responsible for a portion of the Database Weekly newsletters. I used to do half, but right now Kathi, Grant, and I are on a rotation. Our boss puts out a schedule each year, which tells me the weeks for which I am responsible. Each January I then set up a recurring appointment […]
2022-01-17
178 reads
By Daniel Janik
The circle cylinder of life Maybe you’ve noticed all the twenty somethings tight rolling...
By Chris Yates
In today’s data-driven economy, organizations are no longer asking if they should invest in...
By Rohit Garg
PostgreSQL, often referred to as Postgres, is a powerful, open-source object-relational database system that...
Comments posted to this topic are about the item How a Legacy Logic Choked...
Comments posted to this topic are about the item Life's Little Frustrations
Comments posted to this topic are about the item When INCLUDE Columns Quietly Inflate...
I have this table in SQL Server 2022:
CREATE TABLE CustomerLarge (CustomerID INT NOT NULL IDENTITY(1, 1) CONSTRAINT CustomerLargePK PRIMARY KEY CLUSTERED , CustomerName VARCHAR(20) , CustomerContactFirstName VARCHAR(40) , CustomerContactLastName VARCHAR(40) , Address VARCHAR(20) , Address2 VARCHAR(20) , City VARCHAR(20) , CountryCode CHAR(3) , Postal VARCHAR(20) ) GOIf I check the columns_updated() function return in a trigger, what is the data returned? See possible answers