DBA Study Guide
http://www.flickr.com/photos/caledonia09/4999119065/
Hello Dear Reader, over here at Pragmatic Works we’ve been growing like weeds. For the most part we are looking...
2012-10-18
2,428 reads
http://www.flickr.com/photos/caledonia09/4999119065/
Hello Dear Reader, over here at Pragmatic Works we’ve been growing like weeds. For the most part we are looking...
2012-10-18
2,428 reads
One of the things that I think is extremely important for DBAs and really anyone that has to administer a...
2012-10-18
2,423 reads
Just few days gone since our last Chennai SQL Server User Group meet. This is the right time to choose...
2012-10-18
888 reads
A mention today from Jamie Thomson in his blog on source control. I left a comment, but it was long,...
2012-10-18
1,602 reads
As a 1099 consultant, I usually use a placement firm to find a contract job. I always ask the placement...
2012-10-18
1,201 reads
One thing I failed to touch on during my series on SQL Audit was the use of user-defined events in...
2012-10-18
3,236 reads
Today, I am going to share few very useful scripts which will report us on Database Backup from different view...
2012-10-18
7,057 reads
Problem Statement
SQL Server has got in-built functions to convert the given string into LOWER() or UPPER() format but it does...
2012-10-18 (first published: 2012-10-15)
13,503 reads
This December I will be presenting An Introduction to SQL Server 2008 Hand-On for Learning Tree at the LEC in...
2012-10-18
434 reads
Hi everyone,
So the other day on twitter in #sqlhelp and privately with some friends at Microsoft and elsewhere I had...
2012-10-18
892 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