进行 dbcc cheacktable 

解决方案 »

  1.   

    参考
    http://technet.microsoft.com/zh-cn/library/ms174338.aspx
    A. 检查特定表
    以下示例将检查 AdventureWorks 数据库中的 HumanResources.Employee 表的数据页完整性。 复制代码USE AdventureWorks;
    GO
    DBCC CHECKTABLE ("HumanResources.Employee");
    GOB. 以较低的开销检查表
    以下示例将以较低的开销检查 AdventureWorks 数据库中的 Employee 表。 复制代码USE AdventureWorks;
    GO
    DBCC CHECKTABLE (HumanResources.Employee) WITH PHYSICAL_ONLY;
    GOC. 检查特定索引
    以下示例将检查通过访问 sys.indexes 获得的特定索引。 复制代码USE AdventureWorks;
    GO
    DECLARE @indid int;
    SET @indid = (SELECT index_id 
                  FROM sys.indexes
                  WHERE object_id = OBJECT_ID('Production.Product')
                        AND name = 'AK_Product_Name');
    DBCC CHECKTABLE ("Production.Product", @indid);
      

  2.   

    Master等几个系统DB上运行看看