2007-09-13
1,843 reads
2007-09-13
1,843 reads
I'm working on getting a small studio set up for some podcasting of the editorials. That means I put a...
2007-09-12
2,230 reads
I was interested to hear about Microsoft providing some services and storage in the "Cloud." I remember hearing about Amazon making disk space and computing services available to users.
2007-09-12
259 reads
It's the law of unintended consequences: things happening that you don't expect from a seemingly unrelated area. This article talks about a data center having leaks from carpet cleaning above. The concrete floor had aged and the carpet cleaners dumped water on the carpet to soak it through and it leaked. I'm not sure how people have data centers below office floors, but I know I've had a number of them at different companies where I've worked.
2007-09-12
154 reads
2007-09-12
2,011 reads
2007-09-11
2,003 reads
2007-09-10
1,736 reads
2007-09-07
1,717 reads
2007-09-06
1,648 reads
2007-09-05
1,259 reads
By Steve Jones
I type fairly well. Well, I type fast, but I do wear out a...
By ReviewMyDB
Index maintenance has always meant nightly jobs and a window you have to defend....
I’m sure you’ve all heard the tale of Goldilocks and the Three Bears, but...
Comments posted to this topic are about the item SQL Art, Part 4: Happy...
Comments posted to this topic are about the item How We Handled a Vendor...
Comments posted to this topic are about the item Cognitive Coverage
I have this data in the dbo.Commission table in a SQL Server 2022 database.
salesperson commission Brian 12 Brian 16 Andy 7 Andy 14 Andy 21 Steve 20 Steve NULLAll the data is a varchar, and I decide to run this query to get the totals for each salesperson.
SELECT SalesPerson
, AVG(TRY_PARSE(Commission AS int)) AS TotalCommission
FROM commission
GROUP BY SalesPerson
GO
What average commission is calculated for Steve? See possible answers