The Slow Growing Problems
Not every problem is going to fire off an alert, but it still might be something that you want to track.
2026-06-15
61 reads
Not every problem is going to fire off an alert, but it still might be something that you want to track.
2026-06-15
61 reads
Who is liable for mistakes made when listening to AI tooling? In at least one case, Steve isn't sure.
2026-06-13
63 reads
Are computers getting smart enough to pass the Turing test or are humans getting worse at representing themselves as intelligent?
2026-06-12 (first published: 2020-10-15)
355 reads
2026-06-08
190 reads
Is a data model important in modern software? Steve thinks it is and gives a few reasons why we might want to spend a little time on ensuring we have good models as we build software.
2026-06-05
117 reads
2026-06-03
89 reads
Lessons on impostor syndrome from a marketer apply to technologists as well.
2026-06-01 (first published: 2022-09-09)
404 reads
Do meetings and paperwork take a toll on administrators? Steve draws a comparison to some of the changes in the US healthcare system.
2026-05-29 (first published: 2020-10-14)
224 reads
Software teams are changing with AI and this might be an exciting time for developers if they take advantage of the capabilities available.
2026-05-22
95 reads
AI can go off the rails, as we see in a recent story about an LLM deleting a production database.
2026-05-20
92 reads
By gbargsley
One of the first things I review when I inherit a new SQL Server...
By Arun Sirpal
It’s 07:43. Someone’s already left a message. “Something’s wrong with the DB server.” You...
By davebem
I’ve had a Dropbox account for years. Like a lot of people, I started...
hi a peer of mine who ive never known to be wrong says a...
Comments posted to this topic are about the item Displaying Money
Comments posted to this topic are about the item The Slow Growing Problems
I want to get the currency sign displayed with my amount stored in a money type. Does this work?
DECLARE @Amount MONEY; SET @Amount = '?1500'; SELECT CAST( @Amount AS VARCHAR(30)) AS EurosSee possible answers