Micro Credentials
Today Steve talks about a new way of achieving some certification and education from Microsoft.
2019-11-13
267 reads
Today Steve talks about a new way of achieving some certification and education from Microsoft.
2019-11-13
267 reads
2019-11-12
905 reads
2019-11-11
930 reads
Microsoft announced recently that they were changing the way licensing works for HA and DR situations. I think this is a great change, and the summary is: You can...
2019-11-11
40 reads
2019-11-11
348 reads
Steve highlights a few items from a busy Microsoft and SQL Server news week.
2019-11-09
234 reads
2019-11-08
1,141 reads
Computer networks are critical for our work, but if they get clogged with new types of data, we might have a problem.
2019-11-08
241 reads
2019-11-07
226 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as #SQLNewBloggers. If you’ve upgraded your SSMS lately, you might...
2019-11-07 (first published: 2019-10-30)
780 reads
Reading tutorials is fine. Shipping something is better. If you are trying to break...
By Steve Jones
We work hard at Redgate, though with a good work-life balance. One interesting observation...
By Arun Sirpal
Fourth in a series on Ai and databases. What Read-Only Advisory Actually Means 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
Comments posted to this topic are about the item Calculating the Harmonic Mean in...
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