• This is all that the sql monitor tool throws out to the log:

    SELECT StatMan([SC0])

    FROM

    (

    SELECT TOP 100 PERCENT [AT_field_3] AS [SC0]

    FROM [dbo].[tablename]

    WITH

    (

    READUNCOMMITTED

    )

    ORDER BY [SC0]

    ) AS _MS_UPDSTATS_TBL

    It seems to dump this log when I ran the maintance plan to update the stats. My maintenace plans has this:

    use [DatabaseName]

    GO

    UPDATE STATISTICS [dbo].[tablename]

    WITH FULLSCAN

    GO