2012-01-18
18 reads
2012-01-18
18 reads
2011-08-24
22 reads
What are the most influential papers in the world of Big Data? Let me suggest:...
2011-05-30
12 reads
2011-05-02
8 reads
2011-02-02
9 reads
2011-01-05
9 reads
I searched the internet for “connect and forget”. Wonderbox.net offer is described as a...
2010-10-10
10 reads
10 years ago IT professionals considered database technology “mature” and analysts were preparing to...
2010-09-13
14 reads
“The information age is an idea that the current era will be characterized by the ability of...
2010-08-22
5 reads
“Content is king” is the golden rule of the SEO. The semantic web is all about data. Any web...
2010-06-25
12 reads
By Steve Jones
As part of my running the SQL Saturday charitable foundation, I get sponsorship money...
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...
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