Self-Managed Oracle Databases – Good or Bad ?!
Should we as DBAs be worried that we will become surplus to requirements if Oracle continues to enhance its capabilities to deliver a self-managing...
2010-02-23
384 reads
Should we as DBAs be worried that we will become surplus to requirements if Oracle continues to enhance its capabilities to deliver a self-managing...
2010-02-23
384 reads
I have been tinkering lately with database snapshots and I thought the subject warranted a short post on the subject....
2010-02-23
752 reads
Hot Off The Presses !
This isn’t like when you stood in line at the kissing booth in high school. SQL...
2010-02-23
504 reads
If you’ve used SQL Server 2008 Management Studio (SSMS 2008), you may have noticed that Microsoft added a pretty neat...
2010-02-23
766 reads
I’m in the early stages of a book on managing and I’m starting to look for situations that might trigger...
2010-02-23
1,101 reads
I really must thank Steve for his editorial on FizzBuzz. It seemed like a really good topic to do some...
2010-02-23
788 reads
Introduction
I am frequently getting requests for a new server to do this or that. Running through the usual questions to...
2010-02-23
470 reads
After yesterdays’ webinar, we got a lot of great feedback and questions. Once of the more common questions was around...
2010-02-23
455 reads
I promise to make this worth your time. (Oops, I better make this quick.)
Alright so with PowerShell if you open...
2010-02-22
1,279 reads
We booked a vacation over the weekend, so I’m marking off the week before Christmas as vacation this year. Hoping...
2010-02-22
933 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