Data Ownership
Who owns the data that we generate ourselves? It's not as easy to answer that as you think.
2007-12-18
56 reads
Who owns the data that we generate ourselves? It's not as easy to answer that as you think.
2007-12-18
56 reads
Usually I'm the one working on my podcasts and starring in them. However I got invited to participate in and...
2007-12-18
1,434 reads
2007-12-17
150 reads
Licensing SQL Server used to be easy and could be again, though it is still better than licensing Oracle.
2007-12-17
247 reads
I'm sure that most of you know that you cannot turn off logging in SQL Server. You can minimize the...
2007-12-17
1,436 reads
If someone acts suspicious at work, do you report them? What if it's the CIO? What if data security is involved?
2007-12-14
101 reads
Malicious code embedded inside advertisements served on the web. What's next?
2007-12-13
71 reads
A short congratulations to myself. I was answering posts last night after tech editing another chapter of the book I'm...
2007-12-12
1,475 reads
Everyone wants real time reporting, or do they? Steve Jones talks about some of the downsides of implementing such a system.
2007-12-12
130 reads
A primary key is a must for every table. Or is it? Steve Jones examines the question.
2007-12-11
474 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...
WA:08218154393 Jl. Kertajaya No.35, Airlangga, Kec. Gubeng, Surabaya, Jawa Timur 60281
Comments posted to this topic are about the item How We Handled a Vendor...
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