MDX Root Function
This week I discovered an incredibly useful MDX function, the function is called Root. Full documentation can be found here....
2014-01-08 (first published: 2014-01-05)
2,172 reads
This week I discovered an incredibly useful MDX function, the function is called Root. Full documentation can be found here....
2014-01-08 (first published: 2014-01-05)
2,172 reads
Today I submitted my Power BI contest entry and I’d love for you to take a look! Here’s a short...
2014-01-08
921 reads
Here’s a very quick post by request.I just had a request for searching the file system for files matching certain...
2014-01-08
1,659 reads
The San Francisco SQL Server User Group – Jan 08 2014 Thanks you everyone for attending session, here is the presentation...
2014-01-08
664 reads
The San Francisco SQL Server User Group – Jan 08 2014 Thanks you everyone for attending session, here is the presentation...
2014-01-08
408 reads
2014-01-08
8 reads
2014-01-08
5 reads
2014-01-08
5 reads
2014-01-08
3 reads
I struck this error in one of my SSIS packages, I found lots of tips and suggestions online for the...
2014-01-08 (first published: 2014-01-06)
2,002 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