Speaking at SQL Saturday #513 in Albany, NY on July 30th – PowerShell and SQL Server
If you are a SQL Server professional and are interested in spending a day with a bunch of other like-minded...
2016-07-18
324 reads
If you are a SQL Server professional and are interested in spending a day with a bunch of other like-minded...
2016-07-18
324 reads
If you are a SQL Server professional and are interested in spending a day with a bunch of other like-minded...
2016-07-18
137 reads
Another Twitter-born blog post! I love getting new ideas from the community. Real world ideas for solving real world problems!
The...
2016-06-23
1,260 reads
Another Twitter-born blog post! I love getting new ideas from the community. Real world ideas for solving real world problems!
The...
2016-06-23
318 reads
This blog post is just a quick follow from my presentation last week for the SQL PASS PowerShell Virtual Chapter.
Here...
2016-06-06
457 reads
This blog post is just a quick follow from my presentation last week for the SQL PASS PowerShell Virtual Chapter.
Here...
2016-06-06
97 reads
There are obviously quite a few things that could cause internet issues that are totally out of our control, but...
2016-04-27
880 reads
There are obviously quite a few things that could cause internet issues that are totally out of our control, but...
2016-04-27
465 reads
If you are a SQL Server professional and are interested in spending a day with a bunch of other like-minded...
2016-04-12
389 reads
If you are a SQL Server professional and are interested in spending a day with a bunch of other like-minded...
2016-04-12
110 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