Is Your Internet Activity Hurting Your DBA Career?
I have been active on the Internet for 15 years, and during that time I have left a long trail...
2008-12-17
1,072 reads
I have been active on the Internet for 15 years, and during that time I have left a long trail...
2008-12-17
1,072 reads
With the world economy on the downside, there is at least one bright light, and that is DBAs are still...
2008-12-09
1,104 reads
SQL Server 2008 (Enterprise Edition) offers row and page compression, which can potentially offer a boost in disk I/O in...
2008-12-08
1,502 reads
I will be attending the PASS Community Summit in Seattle, November 18-21, and will be making two presentations:
DBA 101: Best...
2008-11-10
399 reads
As most of you know, PASS (the Professional Association for SQL Server) is an independent, not-for-profit association, dedicated to supporting,...
2008-11-10
562 reads
SQL Server Magazine Connections, which is part of the larger DevConnections conference, will be held November 10-13 in Las Vegas,...
2008-11-07
538 reads
Compared to many other IT professionals, DBAs, on average, make more money. To find out, let's check and find out.
According...
2008-11-07
3,034 reads
I feel that, ultimately, an Exception DBA is defined by his or her actions, so place yourself in the shoes...
2008-11-07
487 reads
DevTeach is offering 136 sessions, including 36 on SQL Server, 17 on Agile Development, 17 on Software Architecture, and 57...
2008-11-05
389 reads
Microsoft has launched a new SQL Server 2008 marketing-related website at www.sqlserverenergy.com. It is available in 11 languages, and offers...
2008-11-03
848 reads
By Arun Sirpal
Every DBA has a box like this. Sitting untouched for months. Nobody’s proud of...
In all recent versions of the database you can call DBMS_UTILITY.EXPAND_SQL_TEXT to get the...
By Steve Jones
I type fairly well. Well, I type fast, but I do wear out a...
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