EXEC sp_updatestats gives more detailed messaging and also kind of how far the update completed as of now. But this updates all tables within a db.
On the Other Hand you an use UPDATE STATISTICS to update only the columns within the table.
UPDATE STATISTICS Sales.SalesOrderDetail WITH COLUMNS;
But is doesn't give any status messages.
Thank You,
Best Regards,
SQLBuddy