The DBCC command can be run on a database to correct inaccuracies of all objects in that database or you can also correct the inaccuracies of a single table by including that table name. If you would like to run the command for a particular database, then you can run the following command
DBCC UPDATEUSAGE (‘DATABASENAME’)
You can also run the below command to correct the inaccuracies for the current database
DBCC UPDATEUSAGE (0)
Remarks : I take this Information Copy from this Blog : http://learnsqlwithbru.com/2012/02/02/using-dbcc-updateusage-to-correct-inaccuracies/