2007-04-24
3,220 reads
2007-04-24
3,220 reads
2007-04-23
1,766 reads
2007-04-20
2,410 reads
2007-04-19
1,970 reads
2007-04-18
1,955 reads
2007-04-17
1,138 reads
2007-04-16
2,326 reads
2007-04-13
1,553 reads
Windows doesn't see 4GB. If you have a 32bit OS with 4GB of RAM, Windows can't see it all.
I saw...
2007-04-13
1,428 reads
I saw Brian's post on Microsoft's post on post sp2-fixes. Say that 10 times quickly.
They do a good job explaining...
2007-04-13
1,368 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