HP Data Protector - SQL Server 2008 Supported, but Compatibility Pack 2005 Required
Recently, we found out that HP Data Protector had an update, and I took for granted that this update would...
2010-03-31
12,444 reads
Recently, we found out that HP Data Protector had an update, and I took for granted that this update would...
2010-03-31
12,444 reads
I recently came across an interesting script to help show index info and usage. As I began to dissect the...
2010-03-31
2,001 reads
Intel has finally released the long awaited (at least by me) 45nm Xeon 7500 series processor. This beast has eight...
2010-03-31
2,010 reads
The family returned back from the UK last night, after traveling for something like 14 hours, plus an early morning...
2010-03-31
1,548 reads
Have you been looking for a way to measure report performance? Want to know who accesses your reports most frequently? ...
2010-03-30
1,716 reads
I’ve long admired the value that I get from Wikipedia and like the concept of crowd sourcing knowledge, just never...
2010-03-30
1,649 reads
So the other day I posted, Slipstream - Makes installs simple, and this afternoon I needed to do a SQL Server...
2010-03-30
1,401 reads
I had bigger plans for this series than what has transpired. I think that is a testament as to how...
2010-03-30
1,949 reads
2010-03-30
1,462 reads
Instructables has a Paracord contest going that requires some portion of a project include paracord (often referred to as 550...
2010-03-30
1,856 reads
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...
By Steve Jones
One of the things I’ve been requesting for a number of years is cost...
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