• You were joining your grouped results with the original table with duplicates. You can get an even simpler version of your code like this, no need of a subquery:

    SELECT @MSGOUT = @MSGOUT + '

    <tr>

    <td>' + ServerName +'</td>

    <td>' + DBName +'</td>

    <td>' + cast(COUNT(dbname) as varchar(5)) +'</td>

    </tr>

    '

    FROM DBINVENTORY

    GROUP BY ServerName,DBName

    HAVING ( COUNT(DBName) > 1 )

    Luis C.
    General Disclaimer:
    Are you seriously taking the advice and code from someone from the internet without testing it? Do you at least understand it? Or can it easily kill your server?

    How to post data/code on a forum to get the best help: Option 1 / Option 2