SQL Server UG in Vegas August 2014 Meeting
Another Great meeting and topic is coming to the folks in Las Vegas. This month we have had the luck...
2014-08-14
684 reads
Another Great meeting and topic is coming to the folks in Las Vegas. This month we have had the luck...
2014-08-14
684 reads
Another Great meeting and topic is coming to the folks in Las Vegas. This month we have had the luck of finding Mike Fal (blog | twitter) step...
2014-08-14
7 reads
Look at that, it is once again that time of the month that has come to be known as TSQL...
2014-08-12
748 reads
Look at that, it is once again that time of the month that has come to be known as TSQL Tuesday. TSQL Tuesday is a recurring blog party that...
2014-08-12
5 reads
I have been working on upgrading my laptop. Since my laptop housed a bunch of my virtual machines for various...
2014-08-05
1,363 reads
I have been working on upgrading my laptop. Since my laptop housed a bunch of my virtual machines for various presentations and labs, that means also upgrading and/or converting...
2014-08-05
5 reads
I am about to set sail on a new venture with my next official whistle stop. This year has been plenty full of whistle stops and I plan on...
2014-08-04
5 reads
Coming up this week, I have been given the opportunity to do something I enjoy doing. I have been invited...
2014-08-04
725 reads
Coming up this week, I have been given the opportunity to do something I enjoy doing. I have been invited to present to the folks in Philadelphia. Sebastian...
2014-08-04
6 reads
I am taking a slight deviation from the usual type of posts that I share. This time, I just want...
2014-07-30
1,398 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