The Test of Time
IBM recently turned 100 years old and Steve Jones wishes more companies would try to build their business to grow to 100.
2015-06-22 (first published: 2011-06-28)
210 reads
IBM recently turned 100 years old and Steve Jones wishes more companies would try to build their business to grow to 100.
2015-06-22 (first published: 2011-06-28)
210 reads
This Friday Steve Jones asks how you track uptime. Does your scheduled maintenance count against your metrics?
2015-06-19 (first published: 2011-01-28)
194 reads
Today we have a guest editorial from Andy Warren that looks at side projects and how you might actually grow our careers.
2015-06-18
180 reads
A guest editorial from Andy Warren looks at the disagreements between teams in technology.
2015-06-17
215 reads
With no end to company hack attacks in sight, will we get new regulation instead?
2015-06-16 (first published: 2011-06-22)
210 reads
The debate over how to change code or solve a problem can create arguments that last for years. Steve Jones notes the idea of limiting debates to five minutes is interesting.
2015-06-15
176 reads
CSS Engineers at Microsoft are reporting more space issues with database systems. Steve Jones has a few comments.
2015-06-15
138 reads
2015-06-12
134 reads
Steve Jones is searching for anyone that is using In-Memory OLTP tables in production.
2015-06-11
167 reads
There are challenges with the large scale archiving of data. Steve Jones talks about rethinking this as a daily process rather than a periodic one.
2015-06-09
458 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