The Math on Automation
Is it worth automating things? Many people say yes, but Steve Jones says it isn't just about time saved.
2016-03-16
148 reads
Is it worth automating things? Many people say yes, but Steve Jones says it isn't just about time saved.
2016-03-16
148 reads
There was an announcement last week that SQL Server can run on Linux. And it's coming next year.
2016-03-15
348 reads
2016-03-14
112 reads
2016-03-11
133 reads
Steve Jones discusses the idea of building software better, and why that's a challenge for many of us.
2016-03-10
110 reads
Slack has become a popular phenomenon in the technical world, especially for software developers. Should we join in?
2016-03-09
229 reads
In a couple of days, Microsoft is holding Data Driven, an event that will highlight SQL Server 2016.
2016-03-08
107 reads
2016-03-07
309 reads
SMO gives every appearance of being a great example of over-reliance on automated testing at the expense of manual exploratory testing.
2016-03-07
65 reads
Today we have a guest editorial from Andy Warren that examines the costs of family at work.
2016-03-04
175 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