2012-11-21 (first published: 2012-10-02)
1,588 reads
2012-11-21 (first published: 2012-10-02)
1,588 reads
2012-11-16 (first published: 2012-10-02)
1,204 reads
Constructs a restore script for all databases on the server from backup history.
2012-11-12 (first published: 2012-09-26)
1,234 reads
Find all columns containing a string value across all tables and schemas.
2012-11-07 (first published: 2012-10-12)
2,082 reads
It shrinks all log files for the databases created by users.
2012-11-02 (first published: 2012-09-27)
3,945 reads
2012-10-30 (first published: 2012-10-12)
2,326 reads
This stored procedure helps you list all tables, stored procedures, functions, view and triggers in a database.
2012-10-29 (first published: 2012-10-03)
1,886 reads
2012-10-26 (first published: 2012-10-02)
955 reads
2012-10-25 (first published: 2012-10-12)
1,954 reads
2012-10-23 (first published: 2012-09-12)
2,978 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