VMworld EMEA SQL Server Sessions
This trip to Barcelona for the next VMworld EMEA conference next week will be my second trip to this conference...
2017-09-05
151 reads
This trip to Barcelona for the next VMworld EMEA conference next week will be my second trip to this conference...
2017-09-05
151 reads
This trip to Barcelona for the next VMworld EMEA conference next week will be my second trip to this conference...
2017-09-05
381 reads
I have been trying to get my blogging going again after a gap of two months. It has been incredibly...
2017-09-04
512 reads
The Redgate Community Hub is out, and people are starting to use it. It’s a an idea that we think...
2017-09-04
789 reads
If a disaster struck tomorrow, are you ready for it? Are you sure you thought of everything? I cannot count...
2017-09-04
499 reads
I am glad to share that the 1.5.0 release of the CISL (Columnstore Indexes Scripts Library) is finally released.
The biggest...
2017-09-04
361 reads
Who should be running DBCC CHECKDB for Azure SQL Database? Should it be Microsoft or should customers be scheduling it?...
2017-09-04
747 reads
On my day to day work I use Nagios monitoring software. I want to add some custom SQL Server scripts...
2017-09-04
1,824 reads
David has a talk that he delivers at SQL Saturdays, all about Kerberos authentication. What it is, how it works...
2017-09-04
789 reads
Over at Redgate, we’ve been working on a new way to get information to you. It’s called the Redgate Hub....
2017-09-04 (first published: 2017-08-23)
861 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