SQL Azure Deployments
You’ve set up your access to a SQL Azure site so you’re ready to go. Now how do you get...
2011-04-25
1,523 reads
You’ve set up your access to a SQL Azure site so you’re ready to go. Now how do you get...
2011-04-25
1,523 reads
I have blogged before about my appreciation for the SQL community mainly within the PASS organization as that is what...
2011-04-25
538 reads
Have you heard about this new project out there called SQLPeople? It is a new (relatively) project that is the brainchild of Andy Leonard. Andy is trying to help...
2011-04-25
9 reads
Have you heard about this new project out there called SQLPeople? It is a new (relatively) project that is the...
2011-04-25
544 reads
Imagine you have spent the last 9 months developing a sales Data Warehouse and an Analysis Services cube.Your end users...
2011-04-25
4,279 reads
Ever have one of those days where no matter how hard you try you just can’t seem to make any...
2011-04-25
691 reads
Hello World. Stardate 1513.1. After reading that, if you know what I am referring to, you are a tech-head and...
2011-04-25
723 reads
Why should you go to the trouble to start blogging, speaking, answering questions or anything else. What’s the point?
I’ve written...
2011-04-25
1,329 reads
G’day,
I’ve blogged about facets before, but I just thought that I’d mention them again, as they came in quite handy...
2011-04-24
525 reads
For Day 23 of this series, I want to talk a little about some things to consider as you make...
2011-04-24
887 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