Delimiting Results
Recently, I came across the need to delimit some data in order to be able to test some procedures that...
2011-03-01
607 reads
Recently, I came across the need to delimit some data in order to be able to test some procedures that...
2011-03-01
607 reads
By default Firefox doesn’t pass through NT credentials, not a big deal when you’re browsing Amazon by a big pain...
2011-03-01
936 reads
The problem with performance tuning is that it is commonly considered as secondary to the task at hand rather than...
2011-03-01
721 reads
As DBAs, we have all received a phone call from a database user, asking why the database is so slow....
2011-03-01
604 reads
I will be attending and speaking at the Rocky Mountain Tech Trifecta in downtown Denver on March 5, 2011. This...
2011-03-01
498 reads
Microsoft actually released SQL Server 2008 R2 Cumulative Update 6 on February 21, 2011, so I am a little late...
2011-03-01
1,072 reads
Continuing the SQLDIY monitoring project we will take a look at tracking blocking events. I actually received a request to...
2011-03-01
2,864 reads
One of the more exciting features in SQL Server code-named “Denali” (which is the current official name for the next...
2011-02-28
1,870 reads
Recently I had the chance to do some tuning on a system that was built using Grails (formerly Groovy on...
2011-02-28
2,480 reads
Have you wondered how much memory was being consumed by SQL Server? Have you wondered if there was a way to find out that information from a tSQL command?...
2011-02-28
9 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...
CSO BCA 0817839777 PPCR+MQ6, Jl. Raya Darmo No.5, Keputran, Kec. Tegalsari, Surabaya, Jawa Timur...
CSO, BCA. 0817839777 Jl. Gajah Mada No.14-18, Kelurahan Jember Kidu, Jember Kidul, Kec. Kaliwates,...
CSO BCA : 0817839777 Jl. Indrapura No.35, Kemayoran, Kec. Krembangan, Surabaya, Jawa Timur 60176
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