Share the Interesting Work
Today we have a guest editorial from Andy Warren that looks at how we might divvy up our workload in a company.
2016-11-18
89 reads
Today we have a guest editorial from Andy Warren that looks at how we might divvy up our workload in a company.
2016-11-18
89 reads
2016-11-17
153 reads
Does your database development process prevent changes in your software? You shouldn't be held hostage by your database.
2016-11-16
101 reads
Steve Jones talks about the issues with using a local database in your application.
2016-11-14
74 reads
2016-11-11
174 reads
2016-11-10
132 reads
2016-11-08 (first published: 2013-02-14)
202 reads
ODBC is the closest thing we have to a universal standard for data access across platforms, applications and data sources. So why doesn't DocumentDB support it?
2016-11-07
118 reads
This week Steve Jones has a bit of a competition. Share with him how fast you can back up a 1TB database.
2016-11-04
211 reads
We depend on data quality to run our businesses efficiently. However, it's a problem when we mess that data up on purpose.
2016-11-02
85 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