File Sizes
There are two scripts I like to use to look at the file sizes on servers. The first one is...
2013-05-14
450 reads
There are two scripts I like to use to look at the file sizes on servers. The first one is...
2013-05-14
450 reads
Don’t trust the name of an index to tell you what it is. The name is wrong, or at least...
2013-05-14
1,514 reads
Sp_who2 is not used by this DBA. That info is amazingly good to have, but I want more. Don’t get...
2013-05-14
863 reads
Copy / Paste formatted text is a nightmare in WordPress. I’m singling out WordPress because I use it, and, from what...
2013-05-13
589 reads
This script looks much more intimidating than the results it produces, so I recommend running it before reading through it. ...
2013-05-11
472 reads
2013-05-10
411 reads
By gbargsley
One of the first things I review when I inherit a new SQL Server...
By Arun Sirpal
It’s 07:43. Someone’s already left a message. “Something’s wrong with the DB server.” You...
By davebem
I’ve had a Dropbox account for years. Like a lot of people, I started...
hi a peer of mine who ive never known to be wrong says 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
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