Change SSAS Tabular Data Source using TOM
We’ve all been there. You made some adjustments to your Tabular model and you deploy it to the production server...
2018-05-15 (first published: 2018-05-08)
1,926 reads
We’ve all been there. You made some adjustments to your Tabular model and you deploy it to the production server...
2018-05-15 (first published: 2018-05-08)
1,926 reads
There are 6 types of logs available for MySQL environment, Logs are important information for DBA to troubleshoot or understand...
2018-05-15
212 reads
I love showing dbachecks to people. It’s really cool seeing how people will use it and listening to their experiences....
2018-05-15
322 reads
So far, we’ve discussed several phases of backup that starts with planning, creating, strategizing and implementing. In this article, we...
2018-05-15
406 reads
I’ve encountered an issue while trying to compare a local SQL Server database against an Azure SQL DB using Redgate...
2018-05-15
303 reads
In this module you will learn how to use the Timeline by CloudScope. The Timeline by CloudScope is designed for...
2018-05-15
909 reads
This month I continued a new series with Manuel Quintana [Blog | Twitter] to help you stay on top of the...
2018-05-15 (first published: 2018-05-08)
2,909 reads
Speaking at SQLSaturday Atlanta!
I’m proud to announce that I will be speaking at SQL Saturday Atlanta on May 17th 2018! This one won’t let you down! Check out the amazing schedule!...
2018-05-15
5 reads
Speaking at SQLSaturday Atlanta!
I’m proud to announce that I will be speaking at SQL Saturday Atlanta on May 17th 2018! This one...
2018-05-15
252 reads
Central Management Servers give us a way to manage a collection of SQL Servers as one, a query executed against...
2018-05-15
72 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