Separate Reads
Today Steve wonders how many software developers use separate connections for reads and writes in their application.
2024-11-13
80 reads
Today Steve wonders how many software developers use separate connections for reads and writes in their application.
2024-11-13
80 reads
Ignoring technical debt can cause no shortage of problems for companies. Today Steve has a recent example of this.
2024-10-21
126 reads
The executives at CrowdStrike testify before the US Congress, noting their software development process needs work.
2024-10-11
124 reads
How simple should software development be? Steve notes it can be simple, but not too simple.
2024-10-09
144 reads
All developers hit the problem of how and where to store and set their configuration, profile, or initial data. A long time ago, it was generally decided that simple text files containing key/values were best, stored with the application. After all, you are relying on being able to entice busy people to get the permanent settings right for their requirements, folks who are generally not interested in your elegant computer science constructs. Not only that, but the settings must be parsed very quickly and efficiently, otherwise a process that uses the tool will slow to a crawl.
2024-10-04
Stored procedures can be poorly written, but Steve prefers them over embedded code.
2024-09-20
285 reads
This article looks at how you can use event sourcing to maintain persistent and asynchronous communication between microservices.
2024-09-11
Today Steve talks about how we end up with software systems that don't appear to be well engineered.
2024-08-19
184 reads
The way we approach development can have a big impact on quality, as well as how smoothly our team works together.
2024-07-19
151 reads
Steve notes that we're always better doing things better the first time. That takes some effort.
2024-07-01
128 reads
This month, I prompted bloggers to discuss whether good enough is perfect. Thank you to all...
By Steve Jones
Recently a customer asked if SQL Compare and SQL Data Compare can be used...
i see this in the definition of a linked server on our wh sql...
Is this even possible ? Tried with grant but to no avail. [sys].[database_role_members] and...
Comments posted to this topic are about the item Stairway to Snowflake Level 5...
What does this code return in SSMS 20 from SQL Server 2019?
select '|' + CHAR(0)+'abc' + '|';See possible answers