The Software Comparison - Part 2
The second editorial from Steve Jones comparing software to other types of jobs continues with a look at the legal profession.
2008-06-02
40 reads
The second editorial from Steve Jones comparing software to other types of jobs continues with a look at the legal profession.
2008-06-02
40 reads
A look back at the news from the week including Windows 7 and taking an unwired vacation.
2008-06-01
45 reads
A look back at the news from the week including Windows 7 and taking an unwired vacation.
2008-06-01
31 reads
Is building software like building a house? Steve Jones digs into the comparison at the start of an editorial series looking at other professions.
2008-06-01
50 reads
Is building software like building a house? Steve Jones digs into the comparison at the start of an editorial series looking at other professions.
2008-06-01
42 reads
Is building software like building a house? Steve Jones digs into the comparison at the start of an editorial series looking at other professions.
2008-06-01
35 reads
A look back at the news from the week including Windows 7 and taking an unwired vacation.
2008-05-31
45 reads
In SQL Server 2005 there is the concept of alias data types, which are similar to user-defined data types in SQL Server 2000. Yakov Shlafman brings us the first part of a series looking at these structures in SQL Server 2000.
2008-05-30 (first published: 2007-06-19)
6,769 reads
Get an overview of typical data mining problems and the tools and models that are available in SQL Server 2005 for solving these problems.
2008-05-30
3,571 reads
One of the first things that should be done when managing SQL Server is to setup an appropriate backup plan in order to minimize any data loss in the event of a failure. Along with setting up a backup plan there are certain database configurations that need to be setup to ensure you are able to backup databases correctly. In this tip we will look at the different recovery models that SQL Server offers and how to choose a recovery model for your database.
2008-05-30
4,151 reads
By Steve Jones
I type fairly well. Well, I type fast, but I do wear out a...
By way of background, a while back I did video called “My New Favourite...
By ReviewMyDB
Index maintenance has always meant nightly jobs and a window you have to defend....
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