SQL Saturday #49 – Call for Speakers
SQL Saturday #49 in Orlando just opened their call for speakers. I’m debating if I want to go out there....
2010-05-06
886 reads
SQL Saturday #49 in Orlando just opened their call for speakers. I’m debating if I want to go out there....
2010-05-06
886 reads
Here's one that you might want to pass along to those managers that approve training. Steve Jones gives you the reasons why you ought to consider paying for training.
2010-05-06
252 reads
The other day I was looking over a couple of articles on paging, looking to see if I could learn...
2010-05-05
408 reads
When is it worth making an investment to learn a new technology? Steve Jones comments on Powershell as one of those technologies that he has been slow to begin using.
2010-05-05
230 reads
I’m not sure what happened here. I walked up to my desktop, wiggled the mouse, and nothing happened. In the...
2010-05-04
537 reads
Recently I was at a UK user group meeting and Simon Sabin of SQL Skills presented a short “SQL Nugget”...
2010-05-04
646 reads
A bug reported on Connect has Steve Jones worried. This one could be a big deal in some situations that are concerned about comprehensive auditing.
2010-05-04
148 reads
Steve Jones talks about the need for leadership and what managers should be looking to achieve in their efforts.
2010-05-03
168 reads
The cost of data loss is higher in the US than other countries. That's good and bad for DBAs.
2010-05-03
177 reads
I saw Joe Webb’s post, and then Gethryn Ellis’ post as well on when SQL Server last restarted. It’s something...
2010-05-03
451 reads
By davebem
I’ve had a Dropbox account for years. Like a lot of people, I started...
By Zikato
Someone hacked Digitown's municipality and stole classified documents. 45 million rows of router traffic,...
Hello Hello, We. Are. Back! The schedule for EightKB 2026 Edition has been announced!...
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