SQLPASS Virtual Chapters
Today is a topic that is close to my heart. Many of you probably don’t know that the SQL pass...
2010-11-22
539 reads
Today is a topic that is close to my heart. Many of you probably don’t know that the SQL pass...
2010-11-22
539 reads
There have been several usability features that have been added to SSIS in the latest CTP.One of these features is...
2010-11-22
837 reads
Have you ever had to take a long column of data in Excel and turn it into a column? There...
2010-11-22
371 reads
Since it’s Sunday (almost Monday), I thought I would chip into Un-SQL Friday. Before I get down to brass tacks,...
2010-11-22
1,042 reads
Follow the rest of this series at the XQuery for the Non-Expert – X-Query Resources introduction post.
Talk to the Experts
In the...
2010-11-22
2,033 reads
I will be replacing speaker Steven Robidas on Tuesday, 23 November at Microsoft TechDays.ca Montreal. The discussion will be on...
2010-11-21
641 reads
Hey folks, Just a quick preview that we’re hard at work again on a new book with Wiley publishing focused...
2010-11-21
500 reads
Hey there folks! I am sorry it has been about a week without an entry.I have been on planes all...
2010-11-21
327 reads
SQLSaturday#59 went off without a hitch! It was one awesome fun-filled day with our great speakers, sponsors, volunteers, and hundreds...
2010-11-21
1,153 reads
My friend Jen McCown of MidnightDBA fame issued a challenge last week called “Un-SQL Friday”. The inaugural topic is on...
2010-11-21
703 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