The Bad Data Shutdown
Not more hacking, but rather a data error in some cars is disturbing to Steve Jones.
2016-07-05
129 reads
Not more hacking, but rather a data error in some cars is disturbing to Steve Jones.
2016-07-05
129 reads
2016-07-04
84 reads
Today we have a guest editorial as Steve is away on vacation. You often hear about how important it is to network. This is a story of how my network helped me get a new job.
2016-07-01
95 reads
Knowing what is happening on your systems, and being told when a system is not behaving normally is very important for administrators. Steve Jones has a few thoughts on monitoring today.
2016-06-30
263 reads
One of the things that can be an issue in database design is the data used to identify a user.
2016-06-29
116 reads
Data science is hot now, but work is being done to use the power of software to handle some of the grunt work with data analysis problems.
2016-06-28
98 reads
Are DevOps and security diametrically opposed? An interesting pieces says no, and Steve Jones comments.
2016-06-27
79 reads
On the First of June, SQL Server 2016 was officially released. While it is still early days to measure the full impact of the release, the one thing that is exceedingly clear is that this is a very successful software release. There have been very few complaints online beyond the standard heard during any upgrade: […]
2016-06-27
163 reads
An interesting question from Steve Jones today, asking what is your experience with designing databases.
2016-06-24
188 reads
R Services were added to SQL Server 2016, and there are customers using this feature to improve their business processes.
2016-06-23
190 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