SQL Pass Voting forum
So far I have seen lots of blogs about SQLPASS regarding the Slate for this years BoD. I do not...
2010-08-25
710 reads
So far I have seen lots of blogs about SQLPASS regarding the Slate for this years BoD. I do not...
2010-08-25
710 reads
You don’t need log backups. You don’t. They aren’t required for SQL Server to function.
The place when you don’t need...
2010-08-25
745 reads
What are the character traits of outstanding SQL Server Database Administrators (DBA) ?
You know what I’m talking about. There are...
2010-08-24
976 reads
Funny how if take time for longer conversations, ones that ramble, you often learn interesting things that you just wouldn’t...
2010-08-24
1,046 reads
We are here again with after another week and ready for another episode in this series. Today we get to...
2010-08-24
1,666 reads
A couple weeks back someone asked me some questions about data types. Apparently, while implementing some financial data, each developer...
2010-08-24
777 reads
After going through all the materials provided to the NomCom for the PASS Board of Directors, I think I can...
2010-08-24
1,423 reads
Transactional replication in SQL Server 2005\2008 can handle the XML datatype just fine with few exceptions - one in particular being...
2010-08-24
655 reads
Hey Folks,
We ahve some great speakers coming up at the SFSSUG in South Florida. Check out Devin Knight here talking...
2010-08-24
706 reads
I was doing a little catching up on some blog reading today and came across a new post from Adam...
2010-08-24
940 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