2024-01-15
616 reads
2024-01-15
616 reads
Today Steve wonders if the technology for storage and data transfers has superseded the need for portable drives.
2024-01-15
149 reads
I noticed Teslamate wasn’t updated. In fact, I hadn’t had any data captured in nearly a month and I’ve been too busy to notice. I was concerned something had...
2024-01-15
207 reads
candling – v. intr. the habit of taking stock of your life on the occasion of your birthday, letting it serve as a kind of internal referendum on all...
2024-01-12
28 reads
A cloud version of Aurora MySQL has added support for the buffer pool to survive restarts of the database engine. Steve thinks that's an interesting technology, which could be helpful.
2024-01-12
136 reads
2024-01-10
528 reads
An update from 37 Signals/Basecamp shows their expatriation from the cloud has been a success. Worth reading before you make too many moves to the cloud.
2024-01-10
221 reads
Azure Data Studio (ADS) is a cross platform query tool for SQL Server. Learn how to get started using ADS to work with your SQL Server instances.
2024-01-09 (first published: 2019-03-04)
8,030 reads
In this article, we will examine how to use Azure Data Studio with a git repository for storing code.
2024-01-09 (first published: 2019-05-14)
10,424 reads
Some advice from Steve and Sam Altman, whether you work in business or want to build one.
2024-01-08
165 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