First Class Jobs
This week Steve Jones examines the idea of making jobs in SQL Server, first class citizens.
2016-12-02
107 reads
This week Steve Jones examines the idea of making jobs in SQL Server, first class citizens.
2016-12-02
107 reads
Learning more about your craft can translate into more earnings, but it won't be easy.
2016-12-01
113 reads
There are always people that ask workers to deceive, defraud, or mislead customers. This is true for software developers as well.
2016-11-30
114 reads
Today Steve Jones looks at the CREATE OR ALTER syntax, added in SQL Server 2016 SP1.
2016-11-29
176 reads
Today Steve Jones discusses the need to hire the people to do the tasks we need done, not the position we filled.
2016-11-28
135 reads
The issue of copyright for online scripts is a grey area. If a script is published without any form of copyright notice, most people assume that it is freely available for reuse. It's not necessarily the case.
2016-11-25 (first published: 2009-04-20)
659 reads
2016-11-24
68 reads
Today Steve Jones looks at the potential downfalls of monitoring every change without lots of filtering.
2016-11-22
108 reads
2016-11-21
173 reads
2016-11-21
176 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