The information in this article applies to:
BUG #: 56055 (SQLBUG_70) SYMPTOMS
Running CHECKDB against a database with at least 122,000 objects, causes a stack overflow exception. The number of objects is represented by the count of rows in SYSOBJECTS, NOT the number of tables in the database. WORKAROUNDInstead of using CHECKDB, use a script to run DBCC CHECKALLOC as well as a loop that executes DBCC CHECKTABLE for all system and user tables - following is a script that will perform this task, that can be scheduled and run using ISQL:
STATUSMicrosoft has confirmed this to be a problem in SQL Server version 7.0. MORE INFORMATIONThe DBCC TEXTALLOC, although not recommended for use in Microsoft SQL 7.0, may also cause this error. Additional query words:
Keywords : SSrvSQL_Admin kbbug7.00 kbDSupport |
Last Reviewed: December 14, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |