Database Offline Errors

Oct 31, 2007

I currently have a very long script that I need to run on several servers through an SSIS package. The issue stems from servers that have one or two databases offline. This causes the script to fail. Is there an easy way to get the script to either run on offline databases or skip those that are offline? Thanks
-Kyle

View 5 Replies


ADVERTISEMENT

Offline Command Hangs When I Try To Take Database Offline

Apr 10, 2007

Hi, I am relative newbie to SQLServer. When I try to take a user database offline, the query "hangs," with the query processing circle spinning. The Sharepoint 7 application is running on top of the Enterprise SQL Server 2005 db with several logins sleeping and awaiting commands. No errors are generated until I kill the offline command. Anyone have any ideas? Do I need to kill all the connections?

View 2 Replies View Related

Database Offline

Jan 10, 2001

hi
i executed sp_dboption,'my_db','offline','true'
and my_db went offline ok but when i cheked in enterprise manager list of db's i found my_db marked as (suspect/offline), i refresh the window and a got the same result but wen i close the enterprise manager and open it again my_db was not in the list of db's.Now i want to bring back my_db to online by executing sp_dboption 'My_db','offline','false' i was not able to do this and the command exist with this error the database is not in the list use sp_helpdb.
Please can anyone help me on this
Best Regards
Mamzy

View 1 Replies View Related

Database Offline

Aug 28, 2002

I have a customer who's database was marked Suspect due to a drive failure that left a torn page. Before trying to reset the Suspect flag they took the database offline, and now we cannot get the database back online. Any ideas?

View 1 Replies View Related

Database Offline

Nov 27, 1998

Hi all,

We have a serious problem.
The database in SQL Server 6.5 is marked offline
and the error log displayed the following messages :
udopen : file 'F:Filename.DAT' is incorrect size (614400 bytes, should be 537600)

udactivate (primary) : failed to open device 'F:Filename.DAT' for vdn 131

The entries for the device exists in sysusages and sysdevices.

Anyone encountered this before?
Please help if you know how we can get the database online, again.

Many Thanks.

View 1 Replies View Related

Database Taken Offline

Feb 28, 2006

Over the weekend I had one of my databases taken offline. To my knowledge no one explicitly took this database offline. This isn't to say that someone did and is refusing to speak up. I'm just trying to find some answers.

I do know that our IT dept. did maintenance to a number of our servers and they swear nothing was done to this one. So my question is, "Is there any SQL process that can take a database offline."

I've checked the log files but there isn't anything that directly points to that database being taken offline.

Running Windows 2000 Advanced Server SP4, SQL 2000 SP3 on a NT INTEL X86 platform.

Any ideas or comments are appreciated!

View 9 Replies View Related

Database Offline

Mar 12, 2007

What exactly is database offline? I tried to google it but didn't get what I was looking for.

One of my environments has few users. They attach databases and run an application to produce the results. Sometimes they forget to detach databases after their use and these databases remain in SQL Server. Sometimes they leave the database to use it in future.

At the moment there are about 900 databases attached. I believe these attached databases are using the servers resources and therefore, decrease performance. Is this correct?

I was thinking to force the users to detach databases that they do not need and attach when they need. Then thought why shouldn't just set the database to offline and take it back online when they need. Does this increase performance? Does this save server's resources?

Thanks,

Canada DBA

View 1 Replies View Related

Offline|Online Database

Dec 21, 2005

Hi,

Is there any method to get an historical log where appears the database status (Online|offline) ?

Regards.

View 1 Replies View Related

Check SQL Database Offline

Jul 20, 2005

Hello,I am trying to check the integrity of SQL database. The 'problem' withSQL server is that it's fixing the DB automatically after restore so Ineed a way to do it offline, much like using eseutil on Exchangedatabases.Thanks in advance.

View 1 Replies View Related

Take Forever To Take Database Offline

Mar 5, 2007

Hi,

I try to restore a database but it pop error said "the database is in use". So, I try to take the database offline so that I can store the database. But it takes me forever (1 hour till now). It is still showing "1 remaining". Do you have any idea why ? Thank you very much in advance!

View 4 Replies View Related

Copying Database Offline

May 19, 2008

I'm going overseas this summer with my laptop and I have to continue working on a project. Unfortunately that laptop only has Windows Vista Home Premium. I can't afford to get the upgrade but am in the position of having to copy a database from the server to my laptop so I can continue working on it. What I need to do is find a way to copy the database over but in the case where the two computers aren't connected over a network. Is this possible? I tried to simply copy the .mdb, but there were permissions errors (of course). Is there a way to do this? It's pretty important that I get it on the laptop one way or another. Thank you!

View 3 Replies View Related

Cannot Put Database In Offline Mode Because Lock Could Not Be Placed On Database

Sep 12, 2011

One annoying problem has occurred....I want to put database in offline mode....but it is giving me some error...

"ALTER DATABASE failed because a lock could not be placed on database [database]. Try again later. ALTER DATABASE statement failed. (Microsoft SQL Server, Error: 5061)" ...

View 7 Replies View Related

Help - Script That Checks For OFFLINE Database

Sep 21, 2006

Hello ,

I have got a script which checks for the databases that are offline. and mails the dba when any of the database is offline.

When I schedule the job , for every hour , it gives me an blank mail only with the subject ' status of database on testsql' even though no databases are offline.

So how can I change the script , so that it mails the dba only when a database is offline even though its scheduled every hour or half an hour.

The script is:

Set NoCount on
DECLARE @dbname VARCHAR(100)
deCLARE @Status varchar(100)
Declare @Message VARCHAR(8000)
DECLARE @date varchar(100)
set @date = convert(varchar(100), getdate(),109)
set @Message = ''DECLARE dbname_cursor
CURSOR FOR SELECT [name], CONVERT(varchar(30),DATABASEPROPERTYEX(name,'Statu s'))
as [Status] FROM master..sysdatabases WHERE CONVERT(varchar(30),DATABASEPROPERTYEX(name,'Statu s')) = 'OFFLINE'
order by name
OPEN dbname_cursor
FETCH NEXT FROM dbname_cursor INTO @dbname, @Status
WHILE
@@FETCH_STATUS = 0
BEGIN select @message = @message + @@Servername + '-' + @dbname + ' - ' + @Status + Char(13)+ ‘- ‘ + @date
FETCH NEXT FROM dbname_cursor INTO @dbname, @Status
END
CLOSE dbname_cursor
DEALLOCATE dbname_cursor

print @message
EXEC master.dbo.xp_smtp_sendmail
@FROM = N'testsql2000@is.depaul.edu',
@TO = N'dvaddi@depaul.edu',
@server = N'smtp.depaul.edu',
@subject = N'Status of the Database on Testsqlserver!',
@type = N'text/html',
@message = @message


Thanks

View 8 Replies View Related

SQL 2012 :: Restore Database If It Is Offline

May 29, 2015

1.can we restore the db if it is offline?
2.restore information stores in table 'msdb..restorehistory' if we restore the db when the db is offline?

View 1 Replies View Related

Backup, Restore Database Online And Offline

Feb 13, 2004

Hi all,
I have an application running on internet, it uses SQL server datatase.
I have an question want to as: can i backup database and update database online or offline?
Thanks.
TungNT

View 1 Replies View Related

Backup Of Database Doesn't Take Source DB Offline

Jul 16, 2014

I'm using 2014 SE.I know a backup of a database doesn't take the source DB offline, but then I need to move this DB to another server (for intensive reporting work). At present we restore the DB, but that means putting the DB in single user mode, kicking everyone off, and completing the restore.

I see from 2014 EE notes that "online restore" is possible. EE is of course, mightily expensive.Or perhaps it's possible to configure things to speed up the restore process somehow, so there is less downtime?, the resource impact in creating the backup is quite high, perhaps there's a way to (apart from playing with backup compression) reduce the impact on the source server here?

View 8 Replies View Related

SP2 Maintenance Backup Fails On Offline Database.

May 29, 2007

I have a maintenance plan step to perform transaction log backups. There are a few databases that are offline. The backup seems to fail because it tries to backup the offline databases. The backup step is by itself as one of three subplans, although it also fails when it is the only step in a plan with only one subplan.

I have another server that is only on SP1 and it does not have problems handling the offline databases.

Is this an issue with SP2(9.0.3054)?

View 4 Replies View Related

DB Engine :: Cannot Put Database Offline Or In Multi User

Mar 22, 2012

I am trying to place a database offline.

When I right in Microsoft SQL Server Management Studio on the database > Take Offline

Set offline failed for Database 'OperationsManagerAC'.

Transaction (Process ID 56) was deadlocked on lock resources with another process and has been chosen as the deadlock victim. Rerun the transaction. ALTER DATABASE statement failed. (Microsoft SQL Server, Error: 1205)

So I am trying with some queries to pass the database from Single user to multi user but it fails

USE [master]
GO
ALTER DATABASE OperationsManagerAC SET MULTI_USER GO
Msg 1205, Level 13, State 68, Line 1</p><p>Transaction (Process ID 52) was deadlocked on lock resources with another process and has been chosen as the deadlock victim. Rerun the transaction.
Msg 5069, Level 16, State 1, Line 1
ALTER DATABASE statement failed.

I tried also

alter DATABASE OperationsManagerAC SET OFFLINE WITH ROLLBACK IMMEDIATE

IT FAILS AS WELL... with the same error... how to run the SQL Statements without using

How to proceed next?

View 12 Replies View Related

Does Offline Database Come Back Online When Server Is Restarted?

Jun 9, 2006

If you take a database offline to prevent users from accessing it, and then restart the server, will the database be back online when the server starts up?

If so, is there an option to prevent this from happening so that a database taken offline will remain offline until it is manually put online again by an administrator?

View 1 Replies View Related

MSDE Database Is Offline, How Do I Bring It Back Online?

Nov 29, 2007



Dear All,

One of my users created a MSDE database and did not realise that the limit is 2GB. I can not access the database. Is there anyway I can recover it?

They do not have a backup.

Could I create a new database in Standard Edition and then attach the Data and log files from the MSDE database?
Would that work?

View 4 Replies View Related

How To Backup Tr. Log When Database Is OFFLINE And Mdf File Is Remote My Mistake?

Sep 21, 2006

I €˜d like to discus with you the following REAL enough disaster scenario:
1. The TEST database is in the FULL backup mode.
2. WE have a full TEST DB backup and all tr. log backups.
3. DBA moved TEST database OFFLINE for maintenance operations.
4. MDF file for TEST DB was removed by mistake.
5. TRANSACTION LOG (LDF) file is OK.
6. DBA want to recover database to the point of failure.
According with MS SQL Server 2000 documentation it is possible.
We need to backup the transaction log , BUT I CANNOT DO THIS.
PLEASE, HELP.
In the same time, I can make LDF backup and recover database to the point of failure, if database is online and I stop/start SQL Server to remove MDF file.

View 4 Replies View Related

How Do I Make An MSSQL 2000 Server Database Go Offline/Online Using VB 6

Jun 21, 2001

Does anyone know how to do this? I am in the middle of writing a server side program, and this is one thing that I cannot do without.

Also, if anyone can answer that, how do I do the same with an Exchange 5.5 Email account?

Thanks ahead of time!
Cash Coleman

View 1 Replies View Related

SQL 2012 :: Does Setting A Database Offline Free Up Resources On The Server

Jun 25, 2015

I have about 50 databases that are only accessed once a month and on a predictable schedule. Would it free up resources on the server if they were kept offline and brought online only when needed ?

View 8 Replies View Related

Default Database Brought Offline SQL Server Agent Job Fails!!!

Apr 5, 2007

Hi All,

There is this SQL Server agent job that was calling a SSIS package (uses windows authentication) which was executing fine till the default database for the user was brought ofline, and now the job fails citing authentication failure for the user as the reason.

I have tried pointing master as the Default database for the user and now able to connect to SSMS using the users authentication, but the SQL Agent job wont succeed.

Any pointers ?

View 3 Replies View Related

Migrating From Sql2000 MSDE Database To Sql2005 Express - Attach Database Errors

Apr 23, 2006

I have a medical records system, SoapWare v4.90, that uses MSDE (SQL2000) databases. Due to the 2gb limitation, I am trying to migrate over to SQL 2005 (Standard or Express) which I have heard works fine. The SoapWare has a datamanager that allows me to log in to the MSDE instance, detach the SoapWare databases from msde (as well as do backups, etc) which I can confirm are detached.

Then I log back into a SQL2005 database instance using the datamanager and try to attach the database. This is what their pictured instructions demonstrate. However, I get the following error:


Database 'sw_charts' cannot be upgraded because it is read-only or has read-only files. Make the database or files writeable, and rerun recovery.


Of course, some of the entries will be read only, since doctors have to sign off the charts and are not allowed to subsequently change them.  But I should still be able to switch over to sql 2005?!?!?!?


Or... is there a way to attach the databases to SQLExpress manually?

Help pls?

View 1 Replies View Related

Calling Stored Procedures From ADO.NET-VB 2005 Express:1)Compile Errors &&amp; Warnings,2)Northwind Database In Database Explorer?

Feb 13, 2008

Hi all,

I try to learn "How to Access Stored Procedures with ADO.NET 2.0 - VB 2005 Express: (1) Handling the Input and Output Parameters and (2) Reporting their Values in VB Forms". I found a good article "Calling Stored Procedures from ADO.NET" by John Paul Cook in http://www.dbzine.com/sql/sql-artices/cook6. I downloaded the source code into my VB 2005 Express:



Imports System.Data

Imports System.Data.SqlClient

Imports System.Data.SqlTypes

Public Class Form_Cook

Inherits System.Windows.Form.Form

#Region " Windows Form Designer generated code "

Public Sub New()

MyBase.New()

'This call is required by the Windows Form Designer.

InitializeComponent()

'Add any initialization after the InitializeComponent() call

End Sub

'Form overrides dispose to clean up the component list.

Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)

If disposing Then

If Not (components Is Nothing) Then

components.Dispose()

End If

End If

MyBase.Dispose(disposing)

End Sub

'Required by the Windows Form Designer

Private components As System.ComponentModel.IContainer

'NOTE: The following procedure is required by the Windows Form Designer

'It can be modified using the Windows Form Designer.

'Do not modify it using the code editor.

Friend WithEvents GroupBox1 As System.Windows.Forms.GroupBox

Friend WithEvents labelPAF As System.Windows.Forms.Label

Friend WithEvents labelNbrPrices As System.Windows.Forms.Label

Friend WithEvents UpdatePrices As System.Windows.Forms.Button

Friend WithEvents textBoxPAF As System.Windows.Forms.TextBox

Friend WithEvents TenMostExpensive As System.Windows.Forms.Button

Friend WithEvents grdNorthwind As System.Windows.Forms.DataGrid

Friend WithEvents groupBox2 As System.Windows.Forms.GroupBox

<System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()

Me.GroupBox1 = New System.Windows.Forms.GroupBox()

Me.labelPAF = New System.Windows.Forms.Label()

Me.labelNbrPrices = New System.Windows.Forms.Label()

Me.textBoxPAF = New System.Windows.Forms.TextBox()

Me.UpdatePrices = New System.Windows.Forms.Button()

Me.groupBox2 = New System.Windows.Forms.GroupBox()

Me.TenMostExpensive = New System.Windows.Forms.Button()

Me.grdNorthwind = New System.Windows.Forms.DataGrid()

Me.GroupBox1.SuspendLayout()

Me.groupBox2.SuspendLayout()

CType(Me.grdNorthwind, System.ComponentModel.ISupportInitialize).BeginInit()

Me.SuspendLayout()

'

'GroupBox1

'

Me.GroupBox1.Controls.AddRange(New System.Windows.Forms.Control() {Me.labelPAF, Me.labelNbrPrices, Me.textBoxPAF, Me.UpdatePrices})

Me.GroupBox1.Location = New System.Drawing.Point(8, 8)

Me.GroupBox1.Name = "GroupBox1"

Me.GroupBox1.Size = New System.Drawing.Size(240, 112)

Me.GroupBox1.TabIndex = 9

Me.GroupBox1.TabStop = False

'

'labelPAF

'

Me.labelPAF.Location = New System.Drawing.Point(8, 16)

Me.labelPAF.Name = "labelPAF"

Me.labelPAF.Size = New System.Drawing.Size(112, 32)

Me.labelPAF.TabIndex = 2

Me.labelPAF.Text = "Enter Price Adjustment Factor"

'

'labelNbrPrices

'

Me.labelNbrPrices.Location = New System.Drawing.Point(8, 80)

Me.labelNbrPrices.Name = "labelNbrPrices"

Me.labelNbrPrices.Size = New System.Drawing.Size(216, 16)

Me.labelNbrPrices.TabIndex = 5

'

'textBoxPAF

'

Me.textBoxPAF.Location = New System.Drawing.Point(120, 16)

Me.textBoxPAF.Name = "textBoxPAF"

Me.textBoxPAF.TabIndex = 0

Me.textBoxPAF.Text = ""

'

'UpdatePrices

'

Me.UpdatePrices.Location = New System.Drawing.Point(8, 48)

Me.UpdatePrices.Name = "UpdatePrices"

Me.UpdatePrices.Size = New System.Drawing.Size(88, 23)

Me.UpdatePrices.TabIndex = 6

Me.UpdatePrices.Text = "Update Prices"

'

'groupBox2

'

Me.groupBox2.Controls.AddRange(New System.Windows.Forms.Control() {Me.TenMostExpensive, Me.grdNorthwind})

<Part 1----To be continued due to the length of this post>

View 1 Replies View Related

2 Errors When Connecting To Database!

Sep 7, 2007

Hi,
 I uploaded my website to a server and I face some problem to connect with the data base
In the website I have one databse that combaine the asp.net membership and roles tabels
when I try to login the website I got this error
An error has occurred while establishing a connection to the server.  When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections. (provider: SQL Network Interfaces, error: 26 - Error Locating Server/Instance Specified)
I use the login control
+++
another error I get it when I request data from tables other than the member ship and roles tables,
the error is
A connection was successfully established with the server, but then an error occurred during the pre-login handshake. (provider: SSL Provider, error: 0 - The certificate's CN name does not match the passed value.)
 
maybe the second error related to the first becouse in the second stuation I also request the userName wich comes from the membership's table
 
Please, advise me to solve these problems
 

View 3 Replies View Related

Errors Persist In New Database(s)

Apr 19, 2008

I am getting this error condition on two different machines, so I think it is something I am leaving out. The database is being created with a script (pasted at end of this post) executed within SQL Management Express 2005. The database shows up in the database tree but is not expandable, i.e. no plus sign. If I try to get Properties, the following sequence:Database cannot be opened due to inaccessible files or insufficient memory or disk space Error 945 TITLE: Microsoft SQL Server Management Studio Express------------------------------Cannot show requested dialog.------------------------------ADDITIONAL INFORMATION:Cannot show requested dialog. (Microsoft.SqlServer.Express.SqlMgmt)------------------------------An exception occurred while executing a Transact-SQL statement or batch. (Microsoft.SqlServer.Express.ConnectionInfo)------------------------------Database 'Cart1' cannot be opened due to inaccessible files or insufficient memory or disk space.  See the SQL Server errorlog for details. (Microsoft SQL Server, Error: 945)For help, click: http://go.microsoft.com/fwlink?ProdName=Microsoft+SQL+Server&ProdVer=09.00.3042&EvtSrc=MSSQLServer&EvtID=945&LinkId=20476==============================================I had been using "Cart" as the name, saw a reference that said not to use the same name in a new database. The new name is "Cart1"; no help.In the application,  I initially get the "cannot find the physical file, but if I Refresh the page, I get: "Cannot open database "Cart1" requested by the login. The login failed. Login failed for user 'GW20Bob'Please assist in this. I will test or answer any questions I haven't supplied.This and associated files are from Build Your Own ASP.NET 2.0 Web Site Using CSharp And VB by Doug Lowe if anyone is familiar without.Script======USE masterGOCREATE DATABASE Cart1ON (NAME=Cart,    FILENAME = 'C:APPApp_DataCart1.mdf',    SIZE=10 )GOUSE Cart1CREATE TABLE Categories (  catid VARCHAR(10)  NOT NULL,  name  VARCHAR(50)  NOT NULL,  [desc]  VARCHAR(MAX) NOT NULL,  PRIMARY KEY(catid) )  GOCREATE TABLE Products (  productid VARCHAR(10)  NOT NULL,  catid     VARCHAR(10)  NOT NULL,  name      VARCHAR(50)  NOT NULL,  shorttext VARCHAR(MAX) NOT NULL,  longtext  VARCHAR(MAX) NOT NULL,  price     MONEY        NOT NULL,  thumbnail VARCHAR(40)  NOT NULL,  image     VARCHAR(40)  NOT NULL,  PRIMARY KEY(productid),   FOREIGN KEY(catid) REFERENCES Categories(catid) )  GOCREATE TABLE FeaturedProducts (  productid   VARCHAR(10)  NOT NULL,  featuretext VARCHAR(MAX) NOT NULL,  saleprice   MONEY        NOT NULL,  PRIMARY KEY(productid),  FOREIGN KEY(productid) REFERENCES Products(productid) )  GO    CREATE TABLE Customers (  email     VARCHAR(50)  NOT NULL,  lastname  VARCHAR(50)  NOT NULL,  firstname VARCHAR(50)  NOT NULL,  address   VARCHAR(50)  NOT NULL,  city      VARCHAR(50)  NOT NULL,  state     VARCHAR(2)   NOT NULL,  zipcode   VARCHAR(9)   NOT NULL,  phone     VARCHAR(20)  NOT NULL,  PRIMARY KEY(email) )  GO    CREATE TABLE Orders (  ordernum  INT           IDENTITY,  orderdate SMALLDATETIME NOT NULL,  custemail VARCHAR(50)   NOT NULL,  subtotal  MONEY         NOT NULL,  salestax  MONEY         NOT NULL,  shipping  MONEY         NOT NULL,  total     AS (subtotal + salestax + shipping),  PRIMARY KEY(ordernum),   FOREIGN KEY(custemail) REFERENCES Customers(email) )  GO    CREATE TABLE OrderItems (  ordernum  INT          NOT NULL,  productid VARCHAR(10)  NOT NULL,  name      VARCHAR(50)  NOT NULL,  price     MONEY        NOT NULL,  quantity  SMALLINT     NOT NULL,  total     AS (price * quantity),  PRIMARY KEY(ordernum, productid),   FOREIGN KEY(ordernum) REFERENCES Orders(ordernum),  FOREIGN KEY(productid) REFERENCES Products(productid) )  GO

View 2 Replies View Related

Saving Changes To Database, Errors

May 19, 2008

I'm using vs2008 programming in the latest vb.net and am pretty new to sql server. I looked up tuts and such to save changes to databases after I understood on how to connect to them get them to display and such. This is my code when I hit the "Save" button. It worked last time I was working on the program, now it doesn't, when I load up the program sometimes (i'm not sure why or under what circumstances) it'll load up the changes I made to the database through the datagrid and saved, but others it won't. What am I doing wrong? Here's my code:

Private Sub cmdSave_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdSave.Click
Try
Me.Validate()
Me.FinancialBindingSource.EndEdit()
Me.FinancialTableAdapter.Update(Me.myDataSet.Financial)
Catch ex As Exception
MsgBox("Update failed")
End Try
End Sub

edit: It saves, but not completely. By that I mean, it'll save, but i'm not sure if it actually saves to the database or not. It will load back up with the data that I modified fine..unless I change any code in the program. Even if I just add a comment, the data reloads with the original data. However, if I don't touch code, it'll save my data fine. Why does it do this?

View 1 Replies View Related

Database Consistency Errors

Feb 15, 2006

Hi all,

Would appreciate your words of wisdom on the errors below. It's SQL Server 2000 SP3 on Windows 2000. We had hardware problems on one of the disks in the array the data files are on, which precipitated a number of errors in the Application Event log:

Event ID 17052,MSSQLSERVER,Error: 823, Severity: 24, State: 2 I/O error (torn page) detected during read at offset 0x000002ed448000 in file 'E:SQLDATA2XDB_Data.MDF'.

Running DBCC CHECKDB resulted in the following:

Server: Msg 8928, Level 16, State 1, Line 1
Object ID 1901458048, index ID 0: Page (1:1534500) could not be processed. See other errors for details.
Server: Msg 8939, Level 16, State 1, Line 1
Table error: Object ID 1901458048, index ID 0, page (1:1534500). Test (IS_ON (BUF_IOERR, bp->bstat) &&bp->berrcode) failed. Values are 2057 and -1.
DBCC results for 'XDB'.
DBCC results for 'sysobjects'.
There are 328 rows in 18 pages for object 'sysobjects'.
DBCC results for 'sysindexes'.
There are 843 rows in 56 pages for object 'sysindexes'.
DBCC results for 'syscolumns'.
There are 4018 rows in 98 pages for object 'syscolumns'.
DBCC results for 'systypes'.
There are 26 rows in 1 pages for object 'systypes'.

<snip lots more successful checks>

DBCC results for 'tblXMLListsRecords'.
There are 3302391 rows in 79187 pages for object 'tblXMLListsRecords'.
CHECKDB found 0 allocation errors and 2 consistency errors in table 'tblXMLListsRecords' (object ID 1901458048).
DBCC results for 'tblPhotosFolder'.
There are 6121 rows in 228 pages for object 'tblPhotosFolder'.
DBCC results for 'tblImageUpload'.
There are 5 rows in 1 pages for object 'tblImageUpload'.
DBCC results for 'tblLogs'.
There are 2049298 rows in 50892 pages for object 'tblLogs'.
CHECKDB found 0 allocation errors and 2 consistency errors in database 'XDB'.
repair_allow_data_loss is the minimum repair level for the errors found by DBCC CHECKDB (XDB ).
DBCC execution completed. If DBCC printed error messages, contact your system administrator.

So the questions are - what does the first error mean (the table error)? And does a report of 2 consistency errors in tblXMLListRecords mean that we will lose two records? We have a backup but it would mean losing today's work if we went back to it - admittedly not much, but I'd like to be able to make an informed choice as to whether repairing the database or restoring it would be favourite. Any thoughts gratefully received!

I've also taken a backup of the corrupted database, restored it to another server and run
DBCC CHECKDB ('XDB',REPAIR_ALLOW_DATA_LOSS) with the following results. So now I'm thinking restoring from backup is probably best after all - correct?

DBCC results for 'XDB'.
DBCC results for 'sysobjects'.
There are 329 rows in 18 pages for object 'sysobjects'.
DBCC results for 'sysindexes'.
There are 843 rows in 56 pages for object 'sysindexes'.
DBCC results for 'syscolumns'.
There are 4018 rows in 95 pages for object 'syscolumns'.

<snip successful checks>

DBCC results for 'tblMenus'.
There are 0 rows in 1 pages for object 'tblMenus'.
DBCC results for 'tblImageProcessingFilenames'.
Server: Msg 8928, Level 16, State 1, Line 1
Object ID 1901458048, index ID 0: Page (1:1534500) could not be processed. See other errors for details.
Server: Msg 8939, Level 16, State 1, Line 1
Table error: Object ID 1901458048, index ID 0, page (1:1534500). Test (IS_ON (BUF_IOERR, bp->bstat) &&bp->berrcode) failed. Values are 2057 and -1.
Server: Msg 8978, Level 16, State 1, Line 1
Table error: Object ID 1901458048, index ID 1. Page (1:1180423) is missing a reference from previous page (1:1534500). Possible chain linkage problem.
Server: Msg 8976, Level 16, State 1, Line 1
Table error: Object ID 1901458048, index ID 1. Page (1:1534500) was not seen in the scan although its parent (1:1243134) and previous (1:1232752) refer to it. Check any previous errors.
There are 687 rows in 188 pages for object 'tblImageProcessingFilenames'.
DBCC results for 'tblData15C69B09E60A4DC5B19D8C8BD69E6C15'.
There are 842 rows in 23 pages for object 'tblData15C69B09E60A4DC5B19D8C8BD69E6C15'.
DBCC results for 'tblDataLinksChild15C69B09E60A4DC5B19D8C8BD69E6C15'.
There are 848 rows in 24 pages for object 'tblDataLinksChild15C69B09E60A4DC5B19D8C8BD69E6C15'.
DBCC results for 'tblUpdateFields'.
There are 1 rows in 3 pages for object 'tblUpdateFields'.
DBCC results for 'tblData1FDBC8FBD862435E8AD7C648F37F6D3A'.
There are 5 rows in 1 pages for object 'tblData1FDBC8FBD862435E8AD7C648F37F6D3A'.
DBCC results for 'tblDataLinksChild1FDBC8FBD862435E8AD7C648F37F6D3A'.
There are 5 rows in 1 pages for object 'tblDataLinksChild1FDBC8FBD862435E8AD7C648F37F6D3A'.
DBCC results for 'tblXML031029'.
There are 83683 rows in 3331 pages for object 'tblXML031029'.
DBCC results for 'tblXMLListsRecords'.
The error has been repaired.
The error has been repaired.
The error has been repaired.
The error has been repaired.
Repair: Page (1:1534500) has been deallocated from object ID 1901458048, index ID 0.
Clustered index successfully restored for object 'dbo.tblXMLListsRecords' in database 'XDB'.
There are 3302279 rows in 79187 pages for object 'tblXMLListsRecords'.
CHECKDB found 0 allocation errors and 4 consistency errors in table 'tblXMLListsRecords' (object ID 1901458048).
CHECKDB fixed 0 allocation errors and 4 consistency errors in table 'tblXMLListsRecords' (object ID 1901458048).
DBCC results for 'tblPhotosFolder'.
There are 6109 rows in 224 pages for object 'tblPhotosFolder'.
DBCC results for 'tblImageUpload'.
There are 5 rows in 1 pages for object 'tblImageUpload'.
DBCC results for 'tblLogs'.
There are 2048554 rows in 50870 pages for object 'tblLogs'.
CHECKDB found 0 allocation errors and 4 consistency errors in database 'XDB'.
CHECKDB fixed 0 allocation errors and 4 consistency errors in database 'XDB'.
DBCC execution completed. If DBCC printed error messages, contact your system administrator.

Please let me know if there is anything else I should post - many thanks in advance.

View 2 Replies View Related

Database Restore Errors

Jun 29, 2007

I recently made a move to a new server, and I made a backup of all my databases which all work except one.

This is the error I get:
TITLE: Microsoft SQL Server Management Studio Express
------------------------------

Restore failed for Server '64.85.163.93,1433'. (Microsoft.SqlServer.Express.Smo)

For help, click: http://go.microsoft.com/fwlink?ProdName=Microsoft+SQL+Server&ProdVer=9.00.2047.00&EvtSrc=Microsoft.SqlServer.Management.Smo.ExceptionTemplates.FailedOperationExceptionText&EvtID=Restore+Server&LinkId=20476

------------------------------
ADDITIONAL INFORMATION:

System.Data.SqlClient.SqlError: The media set has 2 media families but only 1 are provided. All members must be provided. (Microsoft.SqlServer.Express.Smo)

For help, click: http://go.microsoft.com/fwlink?ProdName=Microsoft+SQL+Server&ProdVer=9.00.2047.00&LinkId=20476

------------------------------
BUTTONS:

OK
------------------------------

Headeronly:

Backup Name: CMS-Full Database Backup
Backup Desc: NULL
Backup Type: 1
Expir Date: NULL
Compressed: 0
Position: 1
DeviceType: 2
USername: sa
DB Name: CMS
DB Ver: 611
BackupSize: 5521408
First LSN:75000000044600037
Last LSN:75000000046400001
Checkpoint LSN:75000000044600037
Backup DB LSN: 0
Sort Order: 52
CodePage: 0
Unicode Locale ID: 1033
Unicdoe Comparision Style: 196609
Compatibility Level: 90
Software Vendor ID: 4608
Software Ver: 9
Flags: 512
BindingID: 669064E1-617C-4C90-9CA0-4B7DDF772F99
Recovery Fork ID: 552CCBF1-AF5C-4A35-AF63-E4AE854B4CB2
Collation: SQL_Latin1_General_CP1_CI_AS
FamilyGUID: 552CCBF1-AF5C-4A35-AF63-E4AE854B4CB2
HasBulkLoggeddata: 0
IsSnapshot: 0
IsReadOnly: 0
IsSingleUser: 0
HasBackupChecksums: 0
IsDamaged: 0
BeginsLogChain: 0
HasIncompleteMetaData: 0
IsForceOffline: 0
IsCopyOnly 0
FirstRecoveryForkID: 552CCBF1-AF5C-4A35-AF63-E4AE854B4CB2
ForkPoint: NULL
RecoveryModel: FULL
DifferentialBaseLSN: NULL
|| BaseGUID: NULL
Backuptype Desc: DB
Backupsetguid: 97743B90-FABB-4296-9198-8FECB7B5DE07

LabelOnly:
MediaName: Null
MediaSetID:1D4A6421-D6FC-4940-878E-3DF0E4EBF179
FamilyCount: 2
FamilySequenceNumber: 2
MediaFamilyId: 9085DAC7-0000-0000-0000-000000000000
MediaSequenceNumber: 1
MediaLabelPresent: 0
Media Desc: NULL
SoftwareName: Microsoft SQL Server
Software Vendor ID: 4608
MediaDate: 2007-06-06 21:06:50.000
MirrorCount: 1

Based on what I read I need two files, however I can't seem to find a second file. I don't know why it would need one as I backed it up the same way as the other 30 databases! This is my most important database and is hurting me by the day!

Is there anyway I can remove the familyCount, or ignore the error? Thanks

View 11 Replies View Related

Getting Rid Of Consistency Errors In Database

Aug 1, 2007

We've got the following error when we ran the "DBCC CHECKDB WITH ALL_ERRORMSGS" command. Please advise what would be the best method to fix this problem without lossing any data (if possible).

--------------

DBCC results for 'PRODUCTION'.
DBCC results for 'sysobjects'.
There are 314 rows in 7 pages for object 'sysobjects'.
DBCC results for 'sysindexes'.
There are 361 rows in 15 pages for object 'sysindexes'.
DBCC results for 'syscolumns'.
There are 1009 rows in 15 pages for object 'syscolumns'.
DBCC results for 'systypes'.
There are 26 rows in 1 pages for object 'systypes'.
DBCC results for 'syscomments'.
There are 153 rows in 19 pages for object 'syscomments'.
DBCC results for 'sysfiles1'.
There are 2 rows in 1 pages for object 'sysfiles1'.
DBCC results for 'syspermissions'.
There are 153 rows in 1 pages for object 'syspermissions'.
DBCC results for 'sysusers'.
There are 14 rows in 1 pages for object 'sysusers'.
DBCC results for 'sysproperties'.
There are 0 rows in 0 pages for object 'sysproperties'.
DBCC results for 'sysdepends'.
There are 353 rows in 2 pages for object 'sysdepends'.
DBCC results for 'sysreferences'.
There are 62 rows in 1 pages for object 'sysreferences'.
DBCC results for 'sysfulltextcatalogs'.
There are 0 rows in 0 pages for object 'sysfulltextcatalogs'.
DBCC results for 'sysfulltextnotify'.
There are 0 rows in 0 pages for object 'sysfulltextnotify'.
DBCC results for 'sysfilegroups'.
There are 1 rows in 1 pages for object 'sysfilegroups'.
DBCC results for 'MHGROUP.CUSTOM1'.
There are 17010 rows in 107 pages for object 'MHGROUP.CUSTOM1'.
DBCC results for 'MHGROUP.FORMS'.
There are 12 rows in 1 pages for object 'MHGROUP.FORMS'.
DBCC results for 'MHGROUP.CUSTOM2'.
There are 161612 rows in 1495 pages for object 'MHGROUP.CUSTOM2'.
DBCC results for 'MHGROUP.DOCCACHE'.
There are 0 rows in 0 pages for object 'MHGROUP.DOCCACHE'.
DBCC results for 'MHGROUP.FORM_CONTROLS'.
There are 579 rows in 7 pages for object 'MHGROUP.FORM_CONTROLS'.
DBCC results for 'MHGROUP.CUSTOM3'.
There are 0 rows in 0 pages for object 'MHGROUP.CUSTOM3'.
DBCC results for 'MHGROUP.QUICK_RETRIEVE'.
There are 15656 rows in 131 pages for object 'MHGROUP.QUICK_RETRIEVE'.
DBCC results for 'MHGROUP.CUSTOM4'.
There are 0 rows in 0 pages for object 'MHGROUP.CUSTOM4'.
DBCC results for 'MHGROUP.ROLES'.
There are 5 rows in 1 pages for object 'MHGROUP.ROLES'.
DBCC results for 'MHGROUP.CUSTOM5'.
There are 0 rows in 0 pages for object 'MHGROUP.CUSTOM5'.
DBCC results for 'MHGROUP.USERROLES'.
There are 4 rows in 1 pages for object 'MHGROUP.USERROLES'.
DBCC results for 'MHGROUP.CUSTOM6'.
There are 0 rows in 0 pages for object 'MHGROUP.CUSTOM6'.
DBCC results for 'MHGROUP.KEYWORDS'.
There are 0 rows in 0 pages for object 'MHGROUP.KEYWORDS'.
DBCC results for 'MHGROUP.CUSTOM7'.
There are 0 rows in 0 pages for object 'MHGROUP.CUSTOM7'.
DBCC results for 'MHGROUP.DOC_KEYWORDS'.
There are 0 rows in 0 pages for object 'MHGROUP.DOC_KEYWORDS'.
DBCC results for 'MHGROUP.ROLE_PROFILES'.
There are 182 rows in 2 pages for object 'MHGROUP.ROLE_PROFILES'.
DBCC results for 'MHGROUP.CUSTOM8'.
There are 0 rows in 0 pages for object 'MHGROUP.CUSTOM8'.
DBCC results for 'MHGROUP.SECURITY_TEMPLATE'.
There are 1 rows in 1 pages for object 'MHGROUP.SECURITY_TEMPLATE'.
DBCC results for 'MHGROUP.CUSTOM9'.
There are 0 rows in 0 pages for object 'MHGROUP.CUSTOM9'.
DBCC results for 'MHGROUP.SYSTEM_PREFERENCES'.
There are 7 rows in 1 pages for object 'MHGROUP.SYSTEM_PREFERENCES'.
DBCC results for 'MHGROUP.CUSTOM10'.
There are 0 rows in 0 pages for object 'MHGROUP.CUSTOM10'.
DBCC results for 'MHGROUP.USER_PREFERENCES'.
There are 0 rows in 0 pages for object 'MHGROUP.USER_PREFERENCES'.
DBCC results for 'MHGROUP.USR_SCTY_ACC_TEMP'.
There are 1 rows in 1 pages for object 'MHGROUP.USR_SCTY_ACC_TEMP'.
DBCC results for 'MHGROUP.CUSTOM11'.
There are 0 rows in 0 pages for object 'MHGROUP.CUSTOM11'.
DBCC results for 'MHGROUP.CUSTOM12'.
There are 0 rows in 0 pages for object 'MHGROUP.CUSTOM12'.
DBCC results for 'MHGROUP.GRP_SCTY_ACC_TEMP'.
There are 1 rows in 1 pages for object 'MHGROUP.GRP_SCTY_ACC_TEMP'.
DBCC results for 'MHGROUP.CUSTOM29'.
There are 14 rows in 1 pages for object 'MHGROUP.CUSTOM29'.
DBCC results for 'MHGROUP.CUSTOM30'.
There are 131 rows in 3 pages for object 'MHGROUP.CUSTOM30'.
DBCC results for 'MHGROUP.USR_SCTY_TEMP_ASSC'.
There are 1 rows in 1 pages for object 'MHGROUP.USR_SCTY_TEMP_ASSC'.
DBCC results for 'MHGROUP.CUSTOM31'.
There are 0 rows in 0 pages for object 'MHGROUP.CUSTOM31'.
DBCC results for 'MHGROUP.USERACTIONS'.
There are 4 rows in 1 pages for object 'MHGROUP.USERACTIONS'.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 190233706496 owned by data record identified by RID = (1:70653:1) EDITWHEN = May 3 2007 12:42AM and DOCNUM = 438753 and VERSION = 2.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 249893486592 owned by data record identified by RID = (1:78576:3) EDITWHEN = May 3 2007 4:04AM and DOCNUM = 547171 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 226056470528 owned by data record identified by RID = (1:79561:4) EDITWHEN = May 3 2007 4:34AM and DOCNUM = 506724 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 250617135104 owned by data record identified by RID = (1:93581:0) EDITWHEN = May 7 2007 8:56AM and DOCNUM = 300158 and VERSION = 41.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 148611661824 owned by data record identified by RID = (1:97144:1) EDITWHEN = May 8 2007 8:48AM and DOCNUM = 371047 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 247374348288 owned by data record identified by RID = (1:101411:1) EDITWHEN = May 9 2007 8:53AM and DOCNUM = 542832 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 251084603392 owned by data record identified by RID = (1:103097:4) EDITWHEN = May 10 2007 3:39AM and DOCNUM = 549268 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 183028940800 owned by data record identified by RID = (1:104120:0) EDITWHEN = May 10 2007 9:04AM and DOCNUM = 429670 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 10331947008 owned by data record identified by RID = (1:105331:1) EDITWHEN = May 11 2007 3:41AM and DOCNUM = 84626 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 251640938496 owned by data record identified by RID = (1:108119:7) EDITWHEN = May 14 2007 4:34AM and DOCNUM = 550202 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 252161425408 owned by data record identified by RID = (1:116159:0) EDITWHEN = May 16 2007 8:09AM and DOCNUM = 551368 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 252471803904 owned by data record identified by RID = (1:120284:4) EDITWHEN = May 18 2007 2:02AM and DOCNUM = 551970 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 250536984576 owned by data record identified by RID = (1:122958:2) EDITWHEN = May 18 2007 8:20AM and DOCNUM = 548281 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 206225408000 owned by data record identified by RID = (1:123289:0) EDITWHEN = May 18 2007 10:14AM and DOCNUM = 449652 and VERSION = 8.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 252530786304 owned by data record identified by RID = (1:123815:1) EDITWHEN = May 21 2007 2:29AM and DOCNUM = 552102 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 58982203392 owned by data record identified by RID = (1:125063:1) EDITWHEN = May 21 2007 6:42AM and DOCNUM = 197503 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 250440187904 owned by data record identified by RID = (1:125578:10) EDITWHEN = May 21 2007 9:52AM and DOCNUM = 548097 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 252884549632 owned by data record identified by RID = (1:126217:3) EDITWHEN = May 21 2007 10:37AM and DOCNUM = 552814 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 252885336064 owned by data record identified by RID = (1:126217:4) EDITWHEN = May 21 2007 10:37AM and DOCNUM = 552823 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 252898705408 owned by data record identified by RID = (1:126371:0) EDITWHEN = May 21 2007 1:49PM and DOCNUM = 552720 and VERSION = 2.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 252899229696 owned by data record identified by RID = (1:126371:2) EDITWHEN = May 21 2007 1:52PM and DOCNUM = 552738 and VERSION = 2.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 252677914624 owned by data record identified by RID = (1:126371:4) EDITWHEN = May 21 2007 2:06PM and DOCNUM = 552331 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 252900016128 owned by data record identified by RID = (1:126371:6) EDITWHEN = May 21 2007 2:36PM and DOCNUM = 552842 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 246325903360 owned by data record identified by RID = (1:126371:7) EDITWHEN = May 21 2007 2:40PM and DOCNUM = 541091 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 251883880448 owned by data record identified by RID = (1:126371:8) EDITWHEN = May 21 2007 2:49PM and DOCNUM = 522753 and VERSION = 5.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 117782872064 owned by data record identified by RID = (1:126447:2) EDITWHEN = May 22 2007 1:22AM and DOCNUM = 316151 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 164379951104 owned by data record identified by RID = (1:126447:3) EDITWHEN = May 22 2007 1:22AM and DOCNUM = 397610 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 183754752000 owned by data record identified by RID = (1:127392:0) EDITWHEN = May 22 2007 1:28AM and DOCNUM = 430878 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 166120128512 owned by data record identified by RID = (1:127392:1) EDITWHEN = May 22 2007 1:29AM and DOCNUM = 400652 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 252898705408 owned by data record identified by RID = (1:127392:3) EDITWHEN = May 22 2007 1:30AM and DOCNUM = 552720 and VERSION = 2.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 229398937600 owned by data record identified by RID = (1:127393:0) EDITWHEN = May 22 2007 1:31AM and DOCNUM = 511737 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 252900016128 owned by data record identified by RID = (1:127393:1) EDITWHEN = May 22 2007 1:31AM and DOCNUM = 552842 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 251084603392 owned by data record identified by RID = (1:127395:2) EDITWHEN = May 22 2007 1:40AM and DOCNUM = 549268 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 204838666240 owned by data record identified by RID = (1:127398:0) EDITWHEN = May 22 2007 1:55AM and DOCNUM = 469609 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 148611661824 owned by data record identified by RID = (1:127824:1) EDITWHEN = May 22 2007 2:00AM and DOCNUM = 371047 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 58982203392 owned by data record identified by RID = (1:127825:2) EDITWHEN = May 22 2007 2:06AM and DOCNUM = 197503 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 195948838912 owned by data record identified by RID = (1:127826:1) EDITWHEN = May 22 2007 2:14AM and DOCNUM = 453377 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 2315714560 owned by data record identified by RID = (1:127830:4) EDITWHEN = May 22 2007 2:42AM and DOCNUM = 49333 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 219683880960 owned by data record identified by RID = (1:127831:2) EDITWHEN = May 22 2007 2:44AM and DOCNUM = 446037 and VERSION = 7.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 136499429376 owned by data record identified by RID = (1:127831:4) EDITWHEN = May 22 2007 2:45AM and DOCNUM = 351353 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 97868775424 owned by data record identified by RID = (1:127992:4) EDITWHEN = May 22 2007 2:47AM and DOCNUM = 277606 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 108305776640 owned by data record identified by RID = (1:127996:1) EDITWHEN = May 22 2007 2:57AM and DOCNUM = 297781 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 246325903360 owned by data record identified by RID = (1:127996:2) EDITWHEN = May 22 2007 2:58AM and DOCNUM = 541091 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 208979886080 owned by data record identified by RID = (1:127996:3) EDITWHEN = May 22 2007 3:02AM and DOCNUM = 477254 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 211872514048 owned by data record identified by RID = (1:127996:5) EDITWHEN = May 22 2007 3:02AM and DOCNUM = 479398 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 73371942912 owned by data record identified by RID = (1:127998:0) EDITWHEN = May 22 2007 3:07AM and DOCNUM = 228381 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 226056470528 owned by data record identified by RID = (1:127999:1) EDITWHEN = May 22 2007 3:17AM and DOCNUM = 506724 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 180270596096 owned by data record identified by RID = (1:128064:3) EDITWHEN = May 22 2007 3:18AM and DOCNUM = 424808 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 153409421312 owned by data record identified by RID = (1:128065:1) EDITWHEN = May 22 2007 3:19AM and DOCNUM = 378903 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 176867508224 owned by data record identified by RID = (1:128068:0) EDITWHEN = May 22 2007 3:33AM and DOCNUM = 418823 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 127582076928 owned by data record identified by RID = (1:128068:1) EDITWHEN = May 22 2007 3:33AM and DOCNUM = 335751 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 41496477696 owned by data record identified by RID = (1:128070:1) EDITWHEN = May 22 2007 3:44AM and DOCNUM = 160458 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 252530786304 owned by data record identified by RID = (1:128070:4) EDITWHEN = May 22 2007 3:45AM and DOCNUM = 552102 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 250617135104 owned by data record identified by RID = (1:128070:6) EDITWHEN = May 22 2007 3:49AM and DOCNUM = 300158 and VERSION = 41.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 213345239040 owned by data record identified by RID = (1:128071:2) EDITWHEN = May 22 2007 3:50AM and DOCNUM = 484473 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 211040141312 owned by data record identified by RID = (1:128240:2) EDITWHEN = May 22 2007 3:54AM and DOCNUM = 480799 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 215276191744 owned by data record identified by RID = (1:128241:2) EDITWHEN = May 22 2007 3:58AM and DOCNUM = 484020 and VERSION = 2.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 227707453440 owned by data record identified by RID = (1:128245:3) EDITWHEN = May 22 2007 4:08AM and DOCNUM = 509645 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 17572626432 owned by data record identified by RID = (1:128245:5) EDITWHEN = May 22 2007 4:09AM and DOCNUM = 104597 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 190558240768 owned by data record identified by RID = (1:128247:3) EDITWHEN = May 22 2007 4:15AM and DOCNUM = 443514 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 233244852224 owned by data record identified by RID = (1:128392:5) EDITWHEN = May 22 2007 4:18AM and DOCNUM = 518211 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 236761710592 owned by data record identified by RID = (1:128395:0) EDITWHEN = May 22 2007 4:27AM and DOCNUM = 135768 and VERSION = 3.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 4776329216 owned by data record identified by RID = (1:128396:0) EDITWHEN = May 22 2007 4:31AM and DOCNUM = 67067 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 4781637632 owned by data record identified by RID = (1:128396:1) EDITWHEN = May 22 2007 4:31AM and DOCNUM = 67147 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 57178390528 owned by data record identified by RID = (1:128396:2) EDITWHEN = May 22 2007 4:31AM and DOCNUM = 193517 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 132154130432 owned by data record identified by RID = (1:128397:1) EDITWHEN = May 22 2007 4:36AM and DOCNUM = 343930 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 181863710720 owned by data record identified by RID = (1:128399:3) EDITWHEN = May 22 2007 4:43AM and DOCNUM = 427662 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 157604446208 owned by data record identified by RID = (1:128399:4) EDITWHEN = May 22 2007 4:44AM and DOCNUM = 385594 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 53393555456 owned by data record identified by RID = (1:128512:0) EDITWHEN = May 22 2007 4:47AM and DOCNUM = 185489 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 249893486592 owned by data record identified by RID = (1:128544:2) EDITWHEN = May 22 2007 6:01AM and DOCNUM = 547171 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 252885336064 owned by data record identified by RID = (1:131422:1) EDITWHEN = May 23 2007 4:54AM and DOCNUM = 552823 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 4781637632 owned by data record identified by RID = (1:217589:1) EDITWHEN = Jan 30 2002 2:45PM and DOCNUM = 67147 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 2315714560 owned by data record identified by RID = (1:217981:11) EDITWHEN = Apr 19 2002 5:22AM and DOCNUM = 49333 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 190233706496 owned by data record identified by RID = (1:226945:0) EDITWHEN = May 26 2007 2:04AM and DOCNUM = 438753 and VERSION = 2.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 97868775424 owned by data record identified by RID = (1:231817:5) EDITWHEN = Oct 11 2004 5:51PM and DOCNUM = 277606 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 17055547392 owned by data record identified by RID = (1:232186:10) EDITWHEN = Oct 26 2004 3:22PM and DOCNUM = 103068 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 247127146496 owned by data record identified by RID = (1:234352:0) EDITWHEN = May 28 2007 8:01AM and DOCNUM = 542357 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 117782872064 owned by data record identified by RID = (1:235268:9) EDITWHEN = Mar 4 2005 3:41PM and DOCNUM = 316151 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 17572626432 owned by data record identified by RID = (1:237531:0) EDITWHEN = Jun 9 2005 11:48AM and DOCNUM = 104597 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 108305776640 owned by data record identified by RID = (1:237547:6) EDITWHEN = Jun 9 2005 6:03PM and DOCNUM = 297781 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 132154130432 owned by data record identified by RID = (1:239829:14) EDITWHEN = Sep 17 2005 12:07PM and DOCNUM = 343930 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 153409421312 owned by data record identified by RID = (1:240034:13) EDITWHEN = Sep 26 2005 7:07AM and DOCNUM = 378903 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 250536984576 owned by data record identified by RID = (1:241157:1) EDITWHEN = May 29 2007 8:07AM and DOCNUM = 548281 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 53393555456 owned by data record identified by RID = (1:241754:16) EDITWHEN = Oct 26 2005 8:13AM and DOCNUM = 185489 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 252471803904 owned by data record identified by RID = (1:243337:1) EDITWHEN = May 31 2007 7:23AM and DOCNUM = 551970 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 164379951104 owned by data record identified by RID = (1:245986:11) EDITWHEN = Dec 8 2005 8:10AM and DOCNUM = 397610 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 166120128512 owned by data record identified by RID = (1:246003:5) EDITWHEN = Dec 9 2005 3:55AM and DOCNUM = 400652 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 183028940800 owned by data record identified by RID = (1:246096:0) EDITWHEN = Jun 5 2007 3:19AM and DOCNUM = 429670 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 251883880448 owned by data record identified by RID = (1:247655:2) EDITWHEN = Jun 6 2007 10:08AM and DOCNUM = 522753 and VERSION = 5.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 252884549632 owned by data record identified by RID = (1:248826:4) EDITWHEN = Jun 7 2007 11:59AM and DOCNUM = 552814 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 136499429376 owned by data record identified by RID = (1:251952:13) EDITWHEN = Feb 17 2006 10:57AM and DOCNUM = 351353 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 251640938496 owned by data record identified by RID = (1:252074:1) EDITWHEN = Jun 13 2007 12:54AM and DOCNUM = 550202 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 178253660160 owned by data record identified by RID = (1:252644:5) EDITWHEN = Jun 13 2007 10:49AM and DOCNUM = 421231 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 157604446208 owned by data record identified by RID = (1:253275:6) EDITWHEN = Feb 24 2006 11:58AM and DOCNUM = 385594 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 178253660160 owned by data record identified by RID = (1:253835:11) EDITWHEN = Mar 7 2006 6:35PM and DOCNUM = 421231 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 183754752000 owned by data record identified by RID = (1:254587:12) EDITWHEN = Apr 4 2006 2:11PM and DOCNUM = 430878 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 181863710720 owned by data record identified by RID = (1:254770:13) EDITWHEN = Apr 13 2006 10:45AM and DOCNUM = 427662 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 127582076928 owned by data record identified by RID = (1:255302:1) EDITWHEN = Apr 27 2006 3:33PM and DOCNUM = 335751 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 243133972480 owned by data record identified by RID = (1:256195:3) EDITWHEN = Jun 18 2007 1:37AM and DOCNUM = 535717 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 180270596096 owned by data record identified by RID = (1:256497:3) EDITWHEN = May 24 2006 12:06PM and DOCNUM = 424808 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 176867508224 owned by data record identified by RID = (1:256516:2) EDITWHEN = May 24 2006 3:20PM and DOCNUM = 418823 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 132764663808 owned by data record identified by RID = (1:259424:0) EDITWHEN = Jun 21 2007 2:01AM and DOCNUM = 322854 and VERSION = 2.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 235844730880 owned by data record identified by RID = (1:260029:0) EDITWHEN = Jun 21 2007 9:19AM and DOCNUM = 522982 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 70246727680 owned by data record identified by RID = (1:263169:1) EDITWHEN = Jun 15 2006 5:05PM and DOCNUM = 218997 and VERSION = 2.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 252161425408 owned by data record identified by RID = (1:267150:1) EDITWHEN = Jun 29 2007 2:17AM and DOCNUM = 551368 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 250440187904 owned by data record identified by RID = (1:268884:1) EDITWHEN = Jul 3 2007 7:07AM and DOCNUM = 548097 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 252899229696 owned by data record identified by RID = (1:268887:3) EDITWHEN = Jul 3 2007 7:19AM and DOCNUM = 552738 and VERSION = 2.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 247374348288 owned by data record identified by RID = (1:269197:6) EDITWHEN = Jul 4 2007 2:47AM and DOCNUM = 542832 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 70246727680 owned by data record identified by RID = (1:273514:4) EDITWHEN = Jul 11 2007 4:26AM and DOCNUM = 218997 and VERSION = 2.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 17055547392 owned by data record identified by RID = (1:273514:5) EDITWHEN = Jul 11 2007 4:27AM and DOCNUM = 103068 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 190558240768 owned by data record identified by RID = (1:278155:8) EDITWHEN = Jul 27 2006 3:49PM and DOCNUM = 443514 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 225814315008 owned by data record identified by RID = (1:279369:10) EDITWHEN = Jul 20 2007 3:30AM and DOCNUM = 506132 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 206225408000 owned by data record identified by RID = (1:281667:3) EDITWHEN = Jul 23 2007 3:23AM and DOCNUM = 449652 and VERSION = 8.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 248579358720 owned by data record identified by RID = (1:283210:3) EDITWHEN = Jul 25 2007 3:41AM and DOCNUM = 544720 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 252677914624 owned by data record identified by RID = (1:285801:6) EDITWHEN = Jul 29 2007 7:05AM and DOCNUM = 552331 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 247185997824 owned by data record identified by RID = (1:286463:3) EDITWHEN = Jul 30 2007 9:40AM and DOCNUM = 525566 and VERSION = 3.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 10331947008 owned by data record identified by RID = (1:286858:8) EDITWHEN = Jul 31 2007 1:52AM and DOCNUM = 84626 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 71545126912 owned by data record identified by RID = (1:286860:10) EDITWHEN = Jul 31 2007 2:01AM and DOCNUM = 224547 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 204838666240 owned by data record identified by RID = (1:288739:4) EDITWHEN = Aug 28 2006 2:44PM and DOCNUM = 469609 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 132764663808 owned by data record identified by RID = (1:290973:5) EDITWHEN = Sep 7 2006 3:55PM and DOCNUM = 322854 and VERSION = 2.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 41496477696 owned by data record identified by RID = (1:291224:7) EDITWHEN = Sep 14 2006 2:26PM and DOCNUM = 160458 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 211872514048 owned by data record identified by RID = (1:294648:6) EDITWHEN = Sep 22 2006 9:49AM and DOCNUM = 479398 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 73371942912 owned by data record identified by RID = (1:301158:8) EDITWHEN = Oct 2 2006 4:06PM and DOCNUM = 228381 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 215276191744 owned by data record identified by RID = (1:303316:6) EDITWHEN = Oct 6 2006 5:04PM and DOCNUM = 484020 and VERSION = 2.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 208979886080 owned by data record identified by RID = (1:303334:1) EDITWHEN = Oct 9 2006 11:20AM and DOCNUM = 477254 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 219683880960 owned by data record identified by RID = (1:307749:6) EDITWHEN = Nov 3 2006 2:36PM and DOCNUM = 446037 and VERSION = 7.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 71545126912 owned by data record identified by RID = (1:308015:17) EDITWHEN = Nov 15 2006 12:54PM and DOCNUM = 224547 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 225814315008 owned by data record identified by RID = (1:308666:16) EDITWHEN = Dec 11 2006 3:46PM and DOCNUM = 506132 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 195948838912 owned by data record identified by RID = (1:309091:7) EDITWHEN = Dec 19 2006 3:15PM and DOCNUM = 453377 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 211040141312 owned by data record identified by RID = (1:309183:7) EDITWHEN = Dec 26 2006 7:56AM and DOCNUM = 480799 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 235844730880 owned by data record identified by RID = (1:310481:14) EDITWHEN = Feb 12 2007 1:57AM and DOCNUM = 522982 and VERSION = 1.
DBCC results for 'MHGROUP.ARCHIVETBL'.
There are 0 rows in 0 pages for object 'MHGROUP.ARCHIVETBL'.
DBCC results for 'MHGROUP.USERHISTORY'.
There are 3325 rows in 37 pages for object 'MHGROUP.USERHISTORY'.
DBCC results for 'MHGROUP.RESTORETBL'.
There are 0 rows in 0 pages for object 'MHGROUP.RESTORETBL'.
DBCC results for 'MHGROUP.DOCMASTER'.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 229398937600 owned by data record identified by RID = (1:310481:15) EDITWHEN = Feb 12 2007 1:58AM and DOCNUM = 511737 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 236761710592 owned by data record identified by RID = (1:310531:3) EDITWHEN = Feb 13 2007 2:40AM and DOCNUM = 135768 and VERSION = 3.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 57178390528 owned by data record identified by RID = (1:310908:12) EDITWHEN = Feb 28 2007 12:48AM and DOCNUM = 193517 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 4776329216 owned by data record identified by RID = (1:310908:14) EDITWHEN = Feb 28 2007 12:51AM and DOCNUM = 67067 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 213345239040 owned by data record identified by RID = (1:311313:12) EDITWHEN = Mar 8 2007 7:40AM and DOCNUM = 484473 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 243133972480 owned by data record identified by RID = (1:312159:4) EDITWHEN = Mar 28 2007 3:04AM and DOCNUM = 535717 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 227707453440 owned by data record identified by RID = (1:312868:1) EDITWHEN = Apr 12 2007 4:05AM and DOCNUM = 509645 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 247127146496 owned by data record identified by RID = (1:312967:13) EDITWHEN = Apr 16 2007 2:48AM and DOCNUM = 542357 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 248579358720 owned by data record identified by RID = (1:313311:12) EDITWHEN = Apr 23 2007 11:26AM and DOCNUM = 544720 and VERSION = 1.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 247185997824 owned by data record identified by RID = (1:313312:12) EDITWHEN = Apr 23 2007 11:31AM and DOCNUM = 525566 and VERSION = 3.
Server: Msg 8929, Level 16, State 1, Line 1
Object ID 597577167: Errors found in text ID 233244852224 owned by data record identified by RID = (1:313352:10) EDITWHEN = Apr 24 2007 6:03AM and DOCNUM = 518211 and VERSION = 1.
Server: Msg 8935, Level 16, State 1, Line 1
Table error: Object ID 597577167, index ID 4. The previous link (1:321250) on page (1:321251) does not match the previous page (1:128129) that the parent (1:92152), slot 9 expects for this page.
Server: Msg 8936, Level 16, State 1, Line 1
Table error: Object ID 597577167, index ID 4. B-tree chain linkage mismatch. (1:128129)->next = (1:321251), but (1:321251)->Prev = (1:321250).
Server: Msg 8935, Level 16, State 1, Line 1
Table error: Object ID 597577167, index ID 22. The previous link (1:417102) on page (1:122442) does not match the previous page (1:127506) that the parent (1:321964), slot 59 expects for this page.
Server: Msg 8936, Level 16, State 1, Line 1
Table error: Object ID 597577167, index ID 22. B-tree chain linkage mismatch. (1:127506)->next = (1:122442), but (1:122442)->Prev = (1:417102).
Server: Msg 8977, Level 16, State 1, Line 1
Table error: Object ID 597577167, index ID 22. Parent node for page (1:127505) was not encountered.
Server: Msg 8934, Level 16, State 1, Line 1
Table error: Object ID 597577167, index ID 22. The high key value on page (1:282065) (level 0) is not less than the low key value in the parent (1:127505), slot 0 of the next page (1:417545).
Server: Msg 8934, Level 16, State 1, Line 1
Table error: Object ID 597577167, index ID 22. The high key value on page (1:282065) (level 0) is not less than the low key value in the parent (1:127505), slot 0 of the next page (1:417545).
Server: Msg 8934, Level 16, State 1, Line 1
Table error: Object ID 597577167, index ID 22. The high key value on page (1:417467) (level 1) is not less than the low key value in the parent (0:1), slot 0 of the next page (1:127505).
Server: Msg 8935, Level 16, State 1, Line 1
Table error: Object ID 597577167, index ID 22. The previous link (1:127505) on page (1:417624) does not match the previous page (1:417467) that the parent (1:416972), slot 8 expects for this page.
Server: Msg 8934, Level 16, State 1, Line 1
Table error: Object ID 597577167, index ID 27. The high key value on page (1:127753) (level 0) is not less than the low key value in the parent (0:1), slot 0 of the next page (1:436964).
Server: Msg 8936, Level 16, State 1, Line 1
Table error: Object ID 597577167, index ID 27. B-tree chain linkage mismatch. (1:127754)->next = (1:436791), but (1:436791)->Prev = (1:436790).
Server: Msg 8935, Level 16, State 1, Line 1
Table error: Object ID 597577167, index ID 27. The previous link (1:436963) on page (1:436964) does not match the previous page (1:127753) that the parent (1:85406), slot 106 expects for this page.
Server: Msg 8936, Level 16, State 1, Line 1
Table error: Object ID 597577167, index ID 27. B-tree chain linkage mismatch. (1:127753)->next = (1:436964), but (1:436964)->Prev = (1:436963).
Server: Msg 8974, Level 16, State 1, Line 1
Text node referenced by more than one node. Object ID 597577167, text, ntext, or image node page (1:1760), slot 4, text ID 70246727680 is pointed to by page (1:273514), slot 4 and by page (1:263169), slot 1.
Server: Msg 8974, Level 16, State 1, Line 1
Text node referenced by more than one node. Object ID 597577167, text, ntext, or image node page (1:2057), slot 84, text ID 153409421312 is pointed to by page (1:240034), slot 13 and by page (1:128065), slot 1.
Server: Msg 8974, Level 16, State 1, Line 1
Text node referenced by more than one node. Object ID 597577167, text, ntext, or image node page (1:2172), slot 86, text ID 71545126912 is pointed to by page (1:286860), slot 10 and by page (1:308015), slot 17.
Server: Msg 8974, Level 16, State 1, Line 1
Text node referenced by more than one node. Object ID 597577167, text, ntext, or image node page (1:6160), slot 48, text ID 148611661824 is pointed to by page (1:127824), slot 1 and by page (1:97144), slot 1.
Server: Msg 8974, Level 16, State 1, Line 1
Text node referenced by more than one node. Object ID 597577167, text, ntext, or image node page (1:6328), slot 19, text ID 229398937600 is pointed to by page (1:127393), slot 0 and by page (1:310481), slot 15.
Server: Msg 8974, Level 16, State 1, Line 1
Text node referenced by more than one node. Object ID 597577167, text, ntext, or image node page (1:8822), slot 59, text ID 132154130432 is pointed to by page (1:128397), slot 1 and by page (1:239829), slot 14.
Server: Msg 8974, Level 16, State 1, Line 1
Text node referenced by more than one node. Object ID 597577167, text, ntext, or image node page (1:12815), slot 81, text ID 53393555456 is pointed to by page (1:241754), slot 16 and by page (1:128512), slot 0.
Server: Msg 8974, Level 16, State 1, Line 1
Text node referenced by more than one node. Object ID 597577167, text, ntext, or image node page (1:16730), slot 87, text ID 97868775424 is pointed to by page (1:231817), slot 5 and by page (1:127992), slot 4.
Server: Msg 8974, Level 16, State 1, Line 1
Text node referenced by more than one node. Object ID 597577167, text, ntext, or image node page (1:17759), slot 86, text ID 2315714560 is pointed to by page (1:217981), slot 11 and by page (1:127830), slot 4.
Server: Msg 8974, Level 16, State 1, Line 1
Text node referenced by more than one node. Object ID 597577167, text, ntext, or image node page (1:26744), slot 8, text ID 4776329216 is pointed to by page (1:310908), slot 14 and by page (1:128396), slot 0.
Server: Msg 8974, Level 16, State 1, Line 1
Text node referenced by more than one node. Object ID 597577167, text, ntext, or image node page (1:26744), slot 88, text ID 4781637632 is pointed to by page (1:128396), slot 1 and by page (1:217589), slot 1.
Server: Msg 8974, Level 16, State 1, Line 1
Text node referenced by more than one node. Object ID 597577167, text, ntext, or image node page (1:28388), slot 88, text ID 108305776640 is pointed to by page (1:127996), slot 1 and by page (1:237547), slot 6.
Server: Msg 8974, Level 16, State 1, Line 1
Text node referenced by more than one node. Object ID 597577167, text, ntext, or image node page (1:31464), slot 24, text ID 176867508224 is pointed to by page (1:128068), slot 0 and by page (1:256516), slot 2.
Server: Msg 8974, Level 16, State 1, Line 1
Text node referenced by more than one node. Object ID 597577167, text, ntext, or image node page (1:31467), slot 15, text ID 127582076928 is pointed to by page (1:128068), slot 1 and by page (1:255302), slot 1.
Server: Msg 8974, Level 16, State 1, Line 1
Text node referenced by more than one node. Object ID 597577167, text, ntext, or image node page (1:36278), slot 28, text ID 117782872064 is pointed to by page (1:126447), slot 2 and by page (1:235268), slot 9.
Server: Msg 8974, Level 16, State 1, Line 1
Text node referenced by more than one node. Object ID 597577167, text, ntext, or image node page (1:43582), slot 44, text ID 251640938496 is pointed to by page (1:108119), slot 7 and by page (1:252074), slot 1.
Server: Msg 8974, Level 16, State 1, Line 1
Text node referenced by more than one node. Object ID 597577167, text, ntext, or image node page (1:44314), slot 4, text ID 10331947008 is pointed to by page (1:286858), slot 8 and by page (1:105331), slot 1.
Server: Msg 8974, Level 16, State 1, Line 1
Text node referenced by more than one node. Object ID 597577167, text, ntext, or image node page (1:45037), slot 52, text ID 132764663808 is pointed to by page (1:259424), slot 0 and by page (1:290973), slot 5.
Server: Msg 8974, Level 16, State 1, Line 1
Text node referenced by more than one node. Object ID 597577167, text, ntext, or image node page (1:47759), slot 61, text ID 211872514048 is pointed to by page (1:127996), slot 5 and by page (1:294648), slot 6.
Server: Msg 8974, Level 16, State 1, Line 1
Text node referenced by more than one node. Object ID 597577167, text, ntext, or image node page (1:55853), slot 51, text ID 251883880448 is pointed to by page (1:247655), slot 2 and by page (1:126371), slot 8.
Server: Msg 8974, Level 16, State 1, Line 1
Text node referenced by more than one node. Object ID 597577167, text, ntext, or image node page (1:56802), slot 2, text ID 236761710592 is pointed to by page (1:310531), slot 3 and by page (1:128395), slot 0.
Server: Msg 8974, Level 16, State 1, Line 1
Text node referenced by more than one node. Object ID 597577167, text, ntext, or image node page (1:57600), slot 69, text ID 249893486592 is pointed to by page (1:128544), slot 2 and by page (1:78576), slot 3.
Server: Msg 8974, Level 16, State 1, Line 1
Text node referenced by more than one node. Object ID 597577167, text, ntext, or image node page (1:58994), slot 65, text ID 252161425408 is pointed to by page (1:267150), slot 1 and by page (1:116159), slot 0.
Server: Msg 8974, Level 16, State 1, Line 1
Text node referenced by more than one node. Object ID 597577167, text, ntext, or image node page (1:60464), slot 49, text ID 166120128512 is pointed to by page (1:246003), slot 5 and by page (1:127392), slot 1.
Server: Msg 8974, Level 16, State 1, Line 1
Text node referenced by more than one node. Object ID 597577167, text, ntext, or image node page (1:63176), slot 68, text ID 190558240768 is pointed to by page (1:128247), slot 3 and by page (1:278155), slot 8.
Server: Msg 8974, Level 16, State 1, Line 1
Text node referenced by more than one node. Object ID 597577167, text, ntext, or image node page (1:64153), slot 44, text ID 183028940800 is pointed to by page (1:246096), slot 0 and by page (1:104120), slot 0.
Server: Msg 8974, Level 16, State 1, Line 1
Text node referenced by more than one node. Object ID 597577167, text, ntext, or image node page (1:66227), slot 57, text ID 213345239040 is pointed to by page (1:311313), slot 12 and by page (1:128071), slot 2.
Server: Msg 8974, Level 16, State 1, Line 1
Text node referenced by more than one node. Object ID 597577167, text, ntext, or image node page (1:68734), slot 32, text ID 17055547392 is pointed to by page (1:273514), slot 5 and by page (1:232186), slot 10.
Server: Msg 8974, Level 16, State 1, Line 1
Text node referenced by more than one node. Object ID 597577167, text, ntext, or image node page (1:69921), slot 3, text ID 252471803904 is pointed to by page (1:243337), slot 1 and by page (1:120284), slot 4.
Server: Msg 8974, Level 16, State 1, Line 1
Text node referenced by more than one node. Object ID 597577167, text, ntext, or image node page (1:69921), slot 36, text ID 252530786304 is pointed to by page (1:128070), slot 4 and by page (1:123815), slot 1.
Server: Msg 8974, Level 16, State 1, Line 1
Text node referenced by more than one node. Object ID 597577167, text, ntext, or image node page (1:69925), slot 14, text ID 252677914624 is pointed to by page (1:285801), slot 6 and by page (1:126371), slot 4.
Server: Msg 8974, Level 16, State 1, Line 1
Text node referenced by more than one node. Object ID 597577167, text, ntext, or image node page (1:70435), slot 84, text ID 17572626432 is pointed to by page (1:128245), slot 5 and by page (1:237531), slot 0.
Server: Msg 8974, Level 16, State 1, Line 1
Text node referenced by more than one node. Object ID 597577167, text, ntext, or image node page (1:73290), slot 72, text ID 157604446208 is pointed to by page (1:128399), slot 4 and by page (1:253275), slot 6.
Server: Msg 8974, Level 16, State 1, Line 1
Text node referenced by more than one node. Object ID 597577167, text, ntext, or image node page (1:73412), slot 44, text ID 252884549632 is pointed to by page (1:126217), slot 3 and by page (1:248826), slot 4.
Server: Msg 8974, Level 16, State 1, Line 1
Text node referenced by more than one node. Object ID 597577167, text, ntext, or image node page (1:73412), slot 45, text ID 252885336064 is pointed to by page (1:126217), slot 4 and by page (1:131422), slot 1.
Server: Msg 8974, Level 16, State 1, Line 1
Text node referenced by more than one node. Object ID 597577167, text, ntext, or image node page (1:73412), slot 65, text ID 252898705408 is pointed to by page (1:127392), slot 3 and by page (1:126371), slot 0.
Server: Msg 8974, Level 16, State 1, Line 1
Text node referenced by more than one node. Object ID 597577167, text, ntext, or image node page (1:73412), slot 66, text ID 252900016128 is pointed to by page (1:127393), slot 1 and by page (1:126371), slot 6.
Server: Msg 8974, Level 16, State 1, Line 1
Text node referenced by more than one node. Object ID 597577167, text, ntext, or image node page (1:73413), slot 11, text ID 252899229696 is pointed to by page (1:268887), slot 3 and by page (1:126371), slot 2.
Server: Msg 8974, Level 16, State 1, Line 1
Text node referenced by more than one node. Object ID 597577167, text, ntext, or image node page (1:82724), slot 41, text ID 250440187904 is pointed to by page (1:268884), slot 1 and by page (1:125578), slot 10.
Server: Msg 8974, Level 16, State 1, Line 1
Text node referenced by more than one node. Object ID 597577167, text, ntext, or image node page (1:82726), slot 41, text ID 250617135104 is pointed to by page (1:128070), slot 6 and by page (1:93581), slot 0.
Server: Msg 8974, Level 16, State 1, Line 1
Text node referenced by more than one node. Object ID 597577167, text, ntext, or image node page (1:82727), slot 23, text ID 250536984576 is pointed to by page (1:241157), slot 1 and by page (1:122958), slot 2.
Server: Msg 8974, Level 16, State 1, Line 1
Text node referenced by more than one node. Object ID 597577167, text, ntext, or image node page (1:91947), slot 44, text ID 136499429376 is pointed to by page (1:251952), slot 13 and by page (1:127831), slot 4.
Server: Msg 8974, Level 16, State 1, Line 1
Text node referenced by more than one node. Object ID 597577167, text, ntext, or image node page (1:93297), slot 87, text ID 219683880960 is pointed to by page (1:127831), slot 2 and by page (1:307749), slot 6.
Server: Msg 8974, Level 16, State 1, Line 1
Text node referenced by more than one node. Object ID 597577167, text, ntext, or image node page (1:100224), slot 14, text ID 251084603392 is pointed to by page (1:103097), slot 4 and by page (1:127395), slot 2.
Server: Msg 8974, Level 16, State 1, Line 1
Text node referenced by more than one node. Object ID 597577167, text, ntext, or image node page (1:100592), slot 0, text ID 248579358720 is pointed to by page (1:283210), slot 3 and by page (1:313311), slot 12.
Server: Msg 8974, Level 16, State 1, Line 1
Text node referenced by more than one node. Object ID 597577167, text, ntext, or image node page (1:100971), slot 86, text ID 164379951104 is pointed to by page (1:126447), slot 3 and by page (1:245986), slot 11.
Server: Msg 8974, Level 16, State 1, Line 1
Text node referenced by more than one node. Object ID 597577167, text, ntext, or image node page (1:104784), slot 45, text ID 73371942912 is pointed to by page (1:301158), slot 8 and by page (1:127998), slot 0.
Server: Msg 8974, Level 16, State 1, Line 1
Text node referenced by more than one node. Object ID 597577167, text, ntext, or image node page (1:113944), slot 40, text ID 183754752000 is pointed to by page (1:127392), slot 0 and by page (1:254587), slot 12.
Server: Msg 8974, Level 16, State 1, Line 1
Text node referenced by more than one node. Object ID 597577167, text, ntext, or image node page (1:129608), slot 19, text ID 247127146496 is pointed to by page (1:312967), slot 13 and by page (1:234352), slot 0.
Server: Msg 8974, Level 16, State 1, Line 1
Text node referenced by more than one node. Object ID 597577167, text, ntext, or image node page (1:129608), slot 62, text ID 247185997824 is pointed to by page (1:286463), slot 3 and by page (1:313312), slot 12.
Server: Msg 8974, Level 16, State 1, Line 1
Text node referenced by more than one node. Object ID 597577167, text, ntext, or image node page (1:130151), slot 6, text ID 247374348288 is pointed to by page (1:269197), slot 6 and by page (1:101411), slot 1.
Server: Msg 8974, Level 16, State 1, Line 1
Text node referenced by more than one node. Object ID 597577167, text, ntext, or image node page (1:143138), slot 76, text ID 233244852224 is pointed to by page (1:128392), slot 5 and by page (1:313352), slot 10.
Server: Msg 8974, Level 16, State 1, Line 1
Text node referenced by more than one node. Object ID 597577167, text, ntext, or image node page (1:148306), slot 43, text ID 41496477696 is pointed to by page (1:291224), slot 7 and by page (1:128070), slot 1.
Server: Msg 8974, Level 16, State 1, Line 1
Text node referenced by more than one node. Object ID 597577167, text, ntext, or image node page (1:150355), slot 15, text ID 226056470528 is pointed to by page (1:127999), slot 1 and by page (1:79561), slot 4.
Server: Msg 8974, Level 16, State 1, Line 1
Text node referenced by more than one node. Object ID 597577167, text, ntext, or image node page (1:163849), slot 44, text ID 208979886080 is pointed to by page (1:127996), slot 3 and by page (1:303334), slot 1.
Server: Msg 8974, Level 16, State 1, Line 1
Text node referenced by more than one node. Object ID 597577167, text, ntext, or image node page (1:167976), slot 42, text ID 215276191744 is pointed to by page (1:128241), slot 2 and by page (1:303316), slot 6.
Server: Msg 8974, Level 16, State 1, Line 1
Text node referenced by more than one node. Object ID 597577167, text, ntext, or image node page (1:173613), slot 50, text ID 190233706496 is pointed to by page (1:70653), slot 1 and by page (1:226945), slot 0.
Server: Msg 8974, Level 16, State 1, Line 1
Text node referenced by more than one node. Object ID 597577167, text, ntext, or image node page (1:196399), slot 67, text ID 57178390528 is pointed to by page (1:310908), slot 12 and by page (1:128396), slot 2.
Server: Msg 8974, Level 16, State 1, Line 1
Text node referenced by more than one node. Object ID 597577167, text, ntext, or image node page (1:202131), slot 10, text ID 58982203392 is pointed to by page (1:125063), slot 1 and by page (1:127825), slot 2.
Server: Msg 8974, Level 16, State 1, Line 1
Text node referenced by more than one node. Object ID 597577167, text, ntext, or image node page (1:204002), slot 87, text ID 181863710720 is pointed to by page (1:254770), slot 13 and by page (1:128399), slot 3.
Server: Msg 8974, Level 16, State 1, Line 1
Text node referenced by more than one node. Object ID 597577167, text, ntext, or image node page (1:212002), slot 75, text ID 204838666240 is pointed to by page (1:127398), slot 0 and by page (1:288739), slot 4.
Server: Msg 8974, Level 16, State 1, Line 1
Text node referenced by more than one node. Object ID 597577167, text, ntext, or image node page (1:223699), slot 1, text ID 243133972480 is pointed to by page (1:256195), slot 3 and by page (1:312159), slot 4.
Server: Msg 8974, Level 16, State 1, Line 1
Text node referenced by more than one node. Object ID 597577167, text, ntext, or image node page (1:233650), slot 52, text ID 235844730880 is pointed to by page (1:310481), slot 14 and by page (1:260029), slot 0.
Server: Msg 8974, Level 16, State 1, Line 1
Text node referenced by more than one node. Object ID 597577167, text, ntext, or image node page (1:236621), slot 38, text ID 211040141312 is pointed to by page (1:309183), slot 7 and by page (1:128240), slot 2.
Server: Msg 8974, Level 16, State 1, Line 1
Text node referenced by more than one node. Object ID 597577167, text, ntext, or image node page (1:242372), slot 87, text ID 180270596096 is pointed to by page (1:256497), slot 3 and by page (1:128064), slot 3.
Server: Msg 8974, Level 16, State 1, Line 1
Text node referenced by more than one node. Object ID 597577167, text, ntext, or image node page (1:253181), slot 85, text ID 227707453440 is pointed to by page (1:312868), slot 1 and by page (1:128245), slot 3.
Server: Msg 8974, Level 16, State 1, Line 1
Text node referenced by more than one node. Object ID 597577167, text, ntext, or image node page (1:266611), slot 43, text ID 225814315008 is pointed to by page (1:279369), slot 10 and by page (1:308666), slot 16.
Server: Msg 8974, Level 16, State 1, Line 1
Text node referenced by more than one node. Object ID 597577167, text, ntext, or image node page (1:357824), slot 81, text ID 178253660160 is pointed to by page (1:252644), slot 5 and by page (1:253835), slot 11.
Server: Msg 8974, Level 16, State 1, Line 1
Text node referenced by more than one node. Object ID 597577167, text, ntext, or image node page (1:373278), slot 67, text ID 195948838912 is pointed to by page (1:127826), slot 1 and by page (1:309091), slot 7.
Server: Msg 8974, Level 16, State 1, Line 1
Text node referenced by more than one node. Object ID 597577167, text, ntext, or image node page (1:413233), slot 14, text ID 206225408000 is pointed to by page (1:281667), slot 3 and by page (1:123289), slot 0.
Server: Msg 8974, Level 16, State 1, Line 1
Text node referenced by more than one node. Object ID 597577167, text, ntext, or image node page (1:457340), slot 66, text ID 246325903360 is pointed to by page (1:127996), slot 2 and by page (1:126371), slot 7.
Server: Msg 2533, Level 16, State 1, Line 1
Table error: Page (1:126554) allocated to object ID 1525580473, index ID 0 was not seen. Page may be invalid or have incorrect object ID information in its header.
Server: Msg 2533, Level 16, State 1, Line 1
Table error: Page (1:126555) allocated to object ID 1525580473, index ID 0 was not seen. Page may be invalid or have incorrect object ID information in its header.
Server: Msg 2533, Level 16, State 1, Line 1
Table error: Page (1:126556) allocated to object ID 1525580473, index ID 0 was not seen. Page may be invalid or have incorrect object ID information in its header.
Server: Msg 2533, Level 16, State 1, Line 1
Table error: Page (1:126557) allocated to object ID 1525580473, index ID 0 was not seen. Page may be invalid or have incorrect object ID information in its header.
Server: Msg 2533, Level 16, State 1, Line 1
Table error: Page (1:126558) allocated to object ID 1525580473, index ID 0 was not seen. Page may be invalid or have incorrect object ID information in its header.
Server: Msg 2533, Level 16, State 1, Line 1
Table error: Page (1:126559) allocated to object ID 1525580473, index ID 0 was not seen. Page may be invalid or have incorrect object ID information in its header.
Server: Msg 2533, Level 16, State 1, Line 1
Table error: Page (1:127680) allocated to object ID 1525580473, index ID 0 was not seen. Page may be invalid or have incorrect object ID information in its header.
Server: Msg 2533, Level 16, State 1, Line 1
Table error: Page (1:127681) allocated to object ID 1525580473, index ID 0 was not seen. Page may be invalid or have incorrect object ID information in its header.
Server: Msg 2533, Level 16, State 1, Line 1
Table error: Page (1:127682) allocated to object ID 1525580473, index ID 0 was not seen. Page may be invalid or have incorrect object ID information in its header.
Server: Msg 2533, Level 16, State 1, Line 1
Table error: Page (1:127683) allocated to object ID 1525580473, index ID 0 was not seen. Page may be invalid or have incorrect object ID information in its header.
Server: Msg 2533, Level 16, State 1, Line 1
Table error: Page (1:127684) allocated to object ID 1525580473, index ID 0 was not seen. Page may be invalid or have incorrect object ID information in its header.
Server: Msg 2533, Level 16, State 1, Line 1
Table error: Page (1:127685) allocated to object ID 1525580473, index ID 0 was not seen. Page may be invalid or have incorrect object ID information in its header.
Server: Msg 2533, Level 16, State 1, Line 1
Table error: Page (1:127686) allocated to object ID 1525580473, index ID 0 was not seen. Page may be invalid or have incorrect object ID information in its header.
Server: Msg 2533, Level 16, State 1, Line 1
Table error: Page (1:127687) allocated to object ID 1525580473, index ID 0 was not seen. Page may be invalid or have incorrect object ID information in its header.
Server: Msg 2533, Level 16, State 1, Line 1
Table error: Page (1:127904) allocated to object ID 1525580473, index ID 0 was not seen. Page may be invalid or have incorrect object ID information in its header.
Server: Msg 2533, Level 16, State 1, Line 1
Table error: Page (1:127905) allocated to object ID 1525580473, index ID 0 was not seen. Page may be invalid or have incorrect object ID information in its header.
Server: Msg 2533, Level 16, State 1, Line 1
Table error: Page (1:127906) allocated to object ID 1525580473, index ID 0 was not seen. Page may be invalid or have incorrect object ID information in its header.
Server: Msg 2533, Level 16, State 1, Line 1
Table error: Page (1:127907) allocated to object ID 1525580473, index ID 0 was not seen. Page may be invalid or have incorrect object ID information in its header.
Server: Msg 2533, Level 16, State 1, Line 1
Table error: Page (1:127908) allocated to object ID 1525580473, index ID 0 was not seen. Page may be invalid or have incorrect object ID information in its header.
Server: Msg 2533, Level 16, State 1, Line 1
Table error: Page (1:127909) allocated to object ID 1525580473, index ID 0 was not seen. Page may be invalid or have incorrect object ID information in its header.
Server: Msg 2533, Level 16, State 1, Line 1
Table error: Page (1:127910) allocated to object ID 1525580473, index ID 0 was not seen. Page may be invalid or have incorrect object ID information in its header.
Server: Msg 2533, Level 16, State 1, Line 1
Table error: Page (1:127911) allocated to object ID 1525580473, index ID 0 was not seen. Page may be invalid or have incorrect object ID information in its header.
Server: Msg 2533, Level 16, State 1, Line 1
Table error: Page (1:127952) allocated to object ID 1525580473, index ID 0 was not seen. Page may be invalid or have incorrect object ID information in its header.
Server: Msg 2533, Level 16, State 1, Line 1
Table error: Page (1:127953) allocated to object ID 1525580473, index ID 0 was not seen. Page may be invalid or have incorrect object ID information in its header.
Server: Msg 2533, Level 16, State 1, Line 1
Table error: Page (1:127954) allocated to object ID 1525580473, index ID 0 was not seen. Page may be invalid or have incorrect object ID information in its header.
Server: Msg 2533, Level 16, State 1, Line 1
Table error: Page (1:127955) allocated to object ID 1525580473, index ID 0 was not seen. Page may be invalid or have incorrect object ID information in its header.
Server: Msg 2533, Level 16, State 1, Line 1
Table error: Page (1:127956) allocated to object ID 1525580473, index ID 0 was not seen. Page may be invalid or have incorrect object ID information in its header.
Server: Msg 2533, Level 16, State 1, Line 1
Table error: Page (1:127957) allocated to object ID 1525580473, index ID 0 was not seen. Page may be invalid or have incorrect object ID information in its header.
Server: Msg 2533, Level 16, State 1, Line 1
Table error: Page (1:127958) allocated to object ID 1525580473, index ID 0 was not seen. Page may be invalid or have incorrect object ID information in its header.
Server: Msg 2533, Level 16, State 1, Line 1
Table error: Page (1:127959) allocated to object ID 1525580473, index ID 0 was not seen. Page may be invalid or have incorrect object ID information in its header.
Server: Msg 2533, Level 16, State 1, Line 1
Table error: Page (1:128056) allocated to object ID 1525580473, index ID 0 was not seen. Page may be invalid or have incorrect object ID information in its header.
Server: Msg 2533, Level 16, State 1, Line 1
Table error: Page (1:128057) allocated to object ID 1525580473, index ID 0 was not seen. Page may be invalid or have incorrect object ID information in its header.
Server: Msg 2533, Level 16, State 1, Line 1
Table error: Page (1:128058) allocated to object ID 1525580473, index ID 0 was not seen. Page may be invalid or have incorrect obj

View 5 Replies View Related

24 Consistency Errors In Database

Sep 6, 2007

Hello all,

I have a problem on SQL 2000 Server Std (inc sP4)
OS: Windows 2000 Server

What can i do for errors?

DBCC CHECKDB ('GOLD_DB, REPAIR_ALLOW_DATA_LOSS)

DBCC results for 'GOLD_DB'.
DBCC results for 'sysobjects'.
...
CHECKDB found 0 allocation errors and 24 consistency errors in database 'GOLD_DB'.
CHECKDB fixed 0 allocation errors and 24 consistency errors in database 'GOLD_DB'.
DBCC execution completed. If DBCC printed error messages, contact your system administrator.

Greetings from istanbul, regards.

View 8 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved