Key Change
I love music. In fact, I like to think that I’m a student of music – although anyone who has heard...
2013-06-21
1,007 reads
I love music. In fact, I like to think that I’m a student of music – although anyone who has heard...
2013-06-21
1,007 reads
I’m happy to announce that I’ll be delivering three, one-day preconference seminars this summer prior to three different SQL Saturday...
2013-06-07
918 reads
In the first post in this series, I covered the basics of object typed variables in SQL Server Integration Services,...
2013-05-28
1,878 reads
This is a temporary post that was not deleted. Please delete this manually. (e621c360-788f-48aa-bd56-670930569ab5 – 3bfe001a-32de-4114-a6b4-4005b770f6d7)
2013-05-25
779 reads
I’m happy to announce that I have been selected to present
at the SQL PASS Summit in Charlotte, North Carolina this...
2013-05-22
681 reads
Tomorrow at 10am (11am EDT), I’ll be joining together with my good friend and SSIS Design Patterns coauthor Andy Leonard...
2013-05-07
866 reads
I’m happy to announce that I’ll be doing a tour of the 4 SQL Server user groups in central Colorado...
2013-03-11
686 reads
Since the release of Visual Studio 2012, business intelligence developers have been limited in how much they could use this...
2013-03-06
1,560 reads
Note: This will be the first post in a short series on using Object typed variables in SQL Server Integration...
2013-03-04
1,671 reads
Since I started regularly attending SQL Saturday events some five years ago, I’ve sat in on a number of professional...
2013-03-08 (first published: 2013-02-28)
3,148 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