Interrupt Me, I'm Stagnating
Today we have a guest editorial from Andy Warren with a few hints on how you can continue to be proactive as a DBA.
2015-02-05
203 reads
Today we have a guest editorial from Andy Warren with a few hints on how you can continue to be proactive as a DBA.
2015-02-05
203 reads
We are managing more and more systems and databases all the time. To Steve Jones, that means we must be able to work at scale.
2015-01-29
154 reads
How do you find time for learning? More importantly, Steve Jones asks if you find time for actual use of your knowledge.
2015-01-27
268 reads
This week Steve Jones talks a bit about problem solving and how you should approach the issue.
2015-01-26
110 reads
2015-01-23
376 reads
Technology shouldn't just be a cost sink in an organization, at least that's what Steve Jones thinks.
2015-01-22
118 reads
There's one word that can make a difference in how much you like your job. Steve Jones has a few thoughts today.
2015-01-21
223 reads
Steve Jones talks about procrastination today and how you might not want to do that with your SQL Servers.
2015-01-19
114 reads
Perspective makes a big difference and Steve Jones looks at how you might change the way you think about clients, customers, and the work you do.
2015-01-15
144 reads
Hadoop is a technology that's getting quite a bit of attention in the last few years, including integration with SQL Server. Steve Jones talks about the technology and how it might fit in your career.
2015-01-14
684 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