SQLSaturday Coming THIS October 24, 2009
Hi, ALL. Sorry I've been light on content this week. I've been battling a cold, and working on some excellent...
2009-10-02
468 reads
Hi, ALL. Sorry I've been light on content this week. I've been battling a cold, and working on some excellent...
2009-10-02
468 reads
If you are in the Dallas/Ft. Worth area and are interested in SQL Server developer training, there is an opportunity...
2009-10-02
641 reads
In this case making money is about counterfeiting. The Art of Making Money: The Story of a Master Counterfeiter ($18)...
2009-10-01
392 reads
As the first stop of my five city speaking tour of Australia, I spoke at the Perth .NET Users Group...
2009-10-01
593 reads
I try not to post too many links without some thoughtful commentary, but I ran across this and thought it...
2009-10-01
273 reads
Well, I guess this isn’t a surprise since I put together the schedule, but I’m still excited to be speaking...
2009-10-01
313 reads
This year will be my third trip to the PASS conference. If you have met me or had any conversation...
2009-10-01
827 reads
So you’ve got some packages that regularly extract data to one or more text files, but you know that from...
2009-09-30
13,972 reads
I'm taking the next two days off, heading down into the basement for a four day weekend. Nothing particular going...
2009-09-30
1,476 reads
I’ve had the glimmer of this idea since I posted about the idea of bringing my chair to the 2009...
2009-09-30
1,389 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...
When things go wrong - like trouble signing in, videos pausing, unclear charges, or...
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