May 12, 2009 at 8:27 am
As Gail mentioned, you want to get the results of this to see what's wrong. 20 hours does seem like a long time. How large is the DB?
My guess is corruption somewhere, which is almost always a hardware issue. I'd start getting ready to investigate further possible errors in the cables, disks, drivers, etc.
May 12, 2009 at 8:36 am
The database is only 320 GB. Our hardware guys did some scan on disk but they said that disk are ok....I am still waiting on Checkdb output for more investigation. I can't find any error related to corruption from event viewer. The trans. log file on that databse is around 170 GB. Will that be an issue?
May 12, 2009 at 9:15 am
Would a transaction log backup be advisable now ? Then you can apply it (them) to your old full backup.
May 12, 2009 at 10:35 am
RPSql (5/12/2009)
The database is only 320 GB. Our hardware guys did some scan on disk but they said that disk are ok....I am still waiting on Checkdb output for more investigation. I can't find any error related to corruption from event viewer. The trans. log file on that databse is around 170 GB. Will that be an issue?
A 320GB database isn't a small database by any measure. It's pretty decently sized, and will take a while to complete CHECKDB without errors, with errors it will a lot longer.
Just from the information in this post, it sounds like this server/database is not getting good proper maintenance done on it. If you have a 170GB Log file you are either, not taking LOG Backups at the appropriate frequency, are using the wrong recovery model, or have large data changes that are not being done in a batched manner. How did your log get to be this large? If it auto grew to this size, then you can bet that the massive number of internal VLF's is going to slow things down a whole lot for recovery.
What kind of diagnostics did the hardware guys actually do and using what tool? If the did a simple scandisk, then I'd question their competency to troubleshoot a potential hardware problem that has your production system down.
Jonathan Kehayias | Principal Consultant | MCM: SQL Server 2008
My Blog | Twitter | MVP Profile
Training | Consulting | Become a SQLskills Insider
Troubleshooting SQL Server: A Guide for Accidental DBAs[/url]
May 12, 2009 at 10:47 am
Hi Jonathan, Thanks for your reply. We have changed recovery mode for that database to "Simple" recovery mode last week. Because they are doing bunch of data load on that database. Client requested us to do so until their data load completes. Thus I cannot take transaction log backup on them. Our hardware buys ran "chkdsk" command on that drive and they didn't find any issue. I am still waiting on Checkdb command to finish.....
May 12, 2009 at 10:53 am
chkdsk isn't thorough enough. You need low level diagnostics, as well as double checking every software version in the I/O system (drivers, firmware,etc)
May 12, 2009 at 10:55 am
Steve Jones - Editor (5/12/2009)
chkdsk isn't thorough enough. You need low level diagnostics, as well as double checking every software version in the I/O system (drivers, firmware,etc)
+1
Chkdsk is a tool I would use if I didn't want to be bothered, and I didn't really care about the outcome. It is not going to tell you if you have a hardware problem physically on your disk. You need to get a real diagnostic look at your hardware, and as Steve says, the drivers/firmware, and other aspects of your disk subsystem.
Jonathan Kehayias | Principal Consultant | MCM: SQL Server 2008
My Blog | Twitter | MVP Profile
Training | Consulting | Become a SQLskills Insider
Troubleshooting SQL Server: A Guide for Accidental DBAs[/url]
May 12, 2009 at 10:59 am
Out of curiousity, how many disks are in the RAID Array that this database sits on and what RAID level is the array configured for?
Jonathan Kehayias | Principal Consultant | MCM: SQL Server 2008
My Blog | Twitter | MVP Profile
Training | Consulting | Become a SQLskills Insider
Troubleshooting SQL Server: A Guide for Accidental DBAs[/url]
May 12, 2009 at 11:01 am
Jonathan Kehayias (5/12/2009)
Out of curiousity, how many disks are in the RAID Array that this database sits on and what RAID level is the array configured for?
Also, is it direct attached storage or a SAN?
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
May 12, 2009 at 12:10 pm
The mdf file from that database sits on one drive(contains one disk) and ldf file sits on another drive(contains one disk). This is not SAN storage but local storage.
May 12, 2009 at 12:13 pm
So single disks? No RAID array?
What is an important production database doing on single disks?
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
May 12, 2009 at 12:14 pm
RPSql (5/12/2009)
The mdf file from that database sits on one drive(contains one disk) and ldf file sits on another drive(contains one disk). This is not SAN storage but local storage.
This is a contributing factor to why it takes so long for CHECKDB to run, and why you have the problems you currently have. Any production database should be on a RAID system that is at least RAID 5, but Ideally RAID 10.
Jonathan Kehayias | Principal Consultant | MCM: SQL Server 2008
My Blog | Twitter | MVP Profile
Training | Consulting | Become a SQLskills Insider
Troubleshooting SQL Server: A Guide for Accidental DBAs[/url]
May 12, 2009 at 12:16 pm
GilaMonster (5/12/2009)
RAID array? If so, what level?
Pretty sure they mean one hard drive for Data file, and one Hard Drive for Log file. The worst possible scenario for performance and data protection. There is no RAID for this database or server from what I am reading here.
Jonathan Kehayias | Principal Consultant | MCM: SQL Server 2008
My Blog | Twitter | MVP Profile
Training | Consulting | Become a SQLskills Insider
Troubleshooting SQL Server: A Guide for Accidental DBAs[/url]
May 12, 2009 at 12:32 pm
Wow - I was watching for updates on the original thread you started so missed all of this.
The FCB wait you saw is because you have activity going on on the database at the same time as the CHECKDB. Now, given that you've had a CRC error, that means your drive is bad. CHECKDB creates a hidden database snapshot on the same drive as the data files, which means it could also be hitting corruption problems on the drive.
Chkdsk - never use this to repair a drive with SQL databases on. Any time chkdsk changes the file-system structure, it will corrupt your SQL database as it has no idea that the blocks it is remapping come from database files.
Yes, post the CHECKDB output and I'll interpret it for you.
20 hours? Well, there's a whole host of factors that could lead to it taking longer. As Gail mentioned, some of the algorithms I wrote for it take longer when corruption exists. A more complete explanation is at CHECKDB From Every Angle: How long will CHECKDB take to run? and I really must do a comprehensive article on interpreting the results to add on to the kind of general guidelines at least I and Gail have posted previously.
Paul Randal
CEO, SQLskills.com: Check out SQLskills online training!
Blog:www.SQLskills.com/blogs/paul Twitter: @PaulRandal
SQL MVP, Microsoft RD, Contributing Editor of TechNet Magazine
Author of DBCC CHECKDB/repair (and other Storage Engine) code of SQL Server 2005
May 14, 2009 at 8:57 pm
O/P of checkdb,
DBCC results for 'LES'.
Service Broker Msg 9675, State 1: Message Types analyzed: 14.
Service Broker Msg 9676, State 1: Service Contracts analyzed: 6.
Service Broker Msg 9667, State 1: Services analyzed: 3.
Service Broker Msg 9668, State 1: Service Queues analyzed: 3.
Service Broker Msg 9669, State 1: Conversation Endpoints analyzed: 0.
Service Broker Msg 9674, State 1: Conversation Groups analyzed: 0.
Service Broker Msg 9670, State 1: Remote Service Bindings analyzed: 0.
Msg 8966, Level 16, State 2, Line 1
Unable to read and latch page (1:8251827) with latch type SH. 23(Data error (cyclic redundancy check).) failed.
Msg 8966, Level 16, State 2, Line 1
Unable to read and latch page (1:8251851) with latch type SH. 23(Data error (cyclic redundancy check).) failed.
Msg 8966, Level 16, State 2, Line 1
Unable to read and latch page (1:18213072) with latch type SH. 23(Data error (cyclic redundancy check).) failed.
Msg 8966, Level 16, State 2, Line 1
Unable to read and latch page (1:22164232) with latch type SH. 23(Data error (cyclic redundancy check).) failed.
Msg 8966, Level 16, State 2, Line 1
Unable to read and latch page (1:22164264) with latch type SH. 23(Data error (cyclic redundancy check).) failed.
Msg 8966, Level 16, State 2, Line 1
Unable to read and latch page (1:22679920) with latch type SH. 23(Data error (cyclic redundancy check).) failed.
CHECKDB found 0 allocation errors and 6 consistency errors not associated with any single object.
DBCC results for 'sys.sysrowsetcolumns'.
There are 2893 rows in 20 pages for object "sys.sysrowsetcolumns".
DBCC results for 'sys.sysrowsets'.
There are 588 rows in 4 pages for object "sys.sysrowsets".
DBCC results for 'sysallocunits'.
There are 677 rows in 7 pages for object "sysallocunits".
DBCC results for 'sys.sysfiles1'.
There are 2 rows in 1 pages for object "sys.sysfiles1".
DBCC results for 'sys.syshobtcolumns'.
There are 2893 rows in 24 pages for object "sys.syshobtcolumns".
DBCC results for 'sys.syshobts'.
There are 588 rows in 4 pages for object "sys.syshobts".
DBCC results for 'sys.sysftinds'.
There are 0 rows in 0 pages for object "sys.sysftinds".
DBCC results for 'sys.sysserefs'.
There are 677 rows in 5 pages for object "sys.sysserefs".
DBCC results for 'sys.sysowners'.
There are 14 rows in 1 pages for object "sys.sysowners".
DBCC results for 'sys.sysprivs'.
There are 120 rows in 1 pages for object "sys.sysprivs".
DBCC results for 'sys.sysschobjs'.
There are 310 rows in 5 pages for object "sys.sysschobjs".
DBCC results for 'sys.syscolpars'.
There are 2233 rows in 39 pages for object "sys.syscolpars".
DBCC results for 'sys.sysnsobjs'.
There are 1 rows in 1 pages for object "sys.sysnsobjs".
DBCC results for 'sys.syscerts'.
There are 0 rows in 0 pages for object "sys.syscerts".
DBCC results for 'sys.sysxprops'.
There are 0 rows in 0 pages for object "sys.sysxprops".
DBCC results for 'sys.sysscalartypes'.
There are 27 rows in 1 pages for object "sys.sysscalartypes".
DBCC results for 'sys.systypedsubobjs'.
There are 0 rows in 0 pages for object "sys.systypedsubobjs".
DBCC results for 'sys.sysidxstats'.
There are 841 rows in 16 pages for object "sys.sysidxstats".
DBCC results for 'sys.sysiscols'.
There are 939 rows in 6 pages for object "sys.sysiscols".
DBCC results for 'sys.sysbinobjs'.
There are 23 rows in 1 pages for object "sys.sysbinobjs".
DBCC results for 'sys.sysobjvalues'.
There are 687 rows in 154 pages for object "sys.sysobjvalues".
DBCC results for 'sys.sysclsobjs'.
There are 14 rows in 1 pages for object "sys.sysclsobjs".
DBCC results for 'sys.sysrowsetrefs'.
There are 0 rows in 0 pages for object "sys.sysrowsetrefs".
DBCC results for 'sys.sysremsvcbinds'.
There are 0 rows in 0 pages for object "sys.sysremsvcbinds".
DBCC results for 'sys.sysxmitqueue'.
There are 0 rows in 0 pages for object "sys.sysxmitqueue".
DBCC results for 'sys.sysrts'.
There are 1 rows in 1 pages for object "sys.sysrts".
DBCC results for 'sys.sysconvgroup'.
There are 0 rows in 0 pages for object "sys.sysconvgroup".
DBCC results for 'sys.sysdesend'.
There are 0 rows in 0 pages for object "sys.sysdesend".
DBCC results for 'sys.sysdercv'.
There are 0 rows in 0 pages for object "sys.sysdercv".
DBCC results for 'sys.syssingleobjrefs'.
There are 133 rows in 1 pages for object "sys.syssingleobjrefs".
DBCC results for 'sys.sysmultiobjrefs'.
There are 470 rows in 3 pages for object "sys.sysmultiobjrefs".
DBCC results for 'sys.sysdbfiles'.
There are 2 rows in 1 pages for object "sys.sysdbfiles".
DBCC results for 'sys.sysguidrefs'.
There are 0 rows in 0 pages for object "sys.sysguidrefs".
DBCC results for 'sys.sysqnames'.
There are 91 rows in 1 pages for object "sys.sysqnames".
DBCC results for 'sys.sysxmlcomponent'.
There are 93 rows in 1 pages for object "sys.sysxmlcomponent".
DBCC results for 'sys.sysxmlfacet'.
There are 97 rows in 1 pages for object "sys.sysxmlfacet".
DBCC results for 'sys.sysxmlplacement'.
There are 17 rows in 1 pages for object "sys.sysxmlplacement".
DBCC results for 'sys.sysobjkeycrypts'.
There are 0 rows in 0 pages for object "sys.sysobjkeycrypts".
DBCC results for 'sys.sysasymkeys'.
There are 0 rows in 0 pages for object "sys.sysasymkeys".
DBCC results for 'sys.syssqlguides'.
There are 0 rows in 0 pages for object "sys.syssqlguides".
DBCC results for 'sys.sysbinsubobjs'.
There are 0 rows in 0 pages for object "sys.sysbinsubobjs".
DBCC results for 'PhysItemCO'.
There are 0 rows in 0 pages for object "PhysItemCO".
DBCC results for 'LLCache'.
Msg 8914, Level 16, State 1, Line 1
Incorrect PFS free space information for page (1:8280296) in object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data). Expected value 50_PCT_FULL, actual value 95_PCT_FULL.
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680131739648 owned by data record identified by RID = (1:8280297:0)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680134885376 owned by data record identified by RID = (1:8280297:1)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680137900032 owned by data record identified by RID = (1:8280297:2)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680140390400 owned by data record identified by RID = (1:8280297:3)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680143142912 owned by data record identified by RID = (1:8280297:4)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680146419712 owned by data record identified by RID = (1:8280297:5)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680149172224 owned by data record identified by RID = (1:8280297:6)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680151924736 owned by data record identified by RID = (1:8280297:7)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680154742784 owned by data record identified by RID = (1:8280297:8)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680157757440 owned by data record identified by RID = (1:8280297:9)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680159920128 owned by data record identified by RID = (1:8280297:10)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680162869248 owned by data record identified by RID = (1:8280297:11)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680165687296 owned by data record identified by RID = (1:8280297:12)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680168767488 owned by data record identified by RID = (1:8280297:13)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680171454464 owned by data record identified by RID = (1:8280297:14)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680174534656 owned by data record identified by RID = (1:8280297:15)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680177287168 owned by data record identified by RID = (1:8280297:16)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680180236288 owned by data record identified by RID = (1:8280297:17)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680182988800 owned by data record identified by RID = (1:8280297:18)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680185872384 owned by data record identified by RID = (1:8280297:19)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680188821504 owned by data record identified by RID = (1:8280297:20)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680190984192 owned by data record identified by RID = (1:8280297:21)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680193998848 owned by data record identified by RID = (1:8280297:22)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680196882432 owned by data record identified by RID = (1:8280297:23)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680199634944 owned by data record identified by RID = (1:8280297:24)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680202649600 owned by data record identified by RID = (1:8280297:25)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680205336576 owned by data record identified by RID = (1:8280297:26)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680207630336 owned by data record identified by RID = (1:8280297:27)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680210841600 owned by data record identified by RID = (1:8280297:28)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680213725184 owned by data record identified by RID = (1:8280297:29)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680216346624 owned by data record identified by RID = (1:8280297:30)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680219230208 owned by data record identified by RID = (1:8280297:31)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680222375936 owned by data record identified by RID = (1:8280297:32)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680224342016 owned by data record identified by RID = (1:8280297:33)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680227356672 owned by data record identified by RID = (1:8280297:34)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680230633472 owned by data record identified by RID = (1:8280297:35)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680233254912 owned by data record identified by RID = (1:8280297:36)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680235941888 owned by data record identified by RID = (1:8280297:37)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680238563328 owned by data record identified by RID = (1:8280297:38)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680241446912 owned by data record identified by RID = (1:8280297:39)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680244199424 owned by data record identified by RID = (1:8280297:40)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680246951936 owned by data record identified by RID = (1:8280297:41)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680249835520 owned by data record identified by RID = (1:8280297:42)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680252719104 owned by data record identified by RID = (1:8280297:43)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680255602688 owned by data record identified by RID = (1:8280297:44)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680258748416 owned by data record identified by RID = (1:8280297:45)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680261500928 owned by data record identified by RID = (1:8280297:46)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680263663616 owned by data record identified by RID = (1:8280297:47)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680266612736 owned by data record identified by RID = (1:8280297:48)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680269824000 owned by data record identified by RID = (1:8280297:49)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680272576512 owned by data record identified by RID = (1:8280297:50)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680275132416 owned by data record identified by RID = (1:8280297:51)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680278016000 owned by data record identified by RID = (1:8280297:52)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680281358336 owned by data record identified by RID = (1:8280297:53)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680283979776 owned by data record identified by RID = (1:8280297:54)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680286863360 owned by data record identified by RID = (1:8280297:55)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680288894976 owned by data record identified by RID = (1:8280297:56)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680292171776 owned by data record identified by RID = (1:8280297:57)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680294793216 owned by data record identified by RID = (1:8280297:58)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680297545728 owned by data record identified by RID = (1:8280297:59)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680300822528 owned by data record identified by RID = (1:8280297:60)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680303312896 owned by data record identified by RID = (1:8280297:61)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680306327552 owned by data record identified by RID = (1:8280297:62)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680309211136 owned by data record identified by RID = (1:8280297:63)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680312029184 owned by data record identified by RID = (1:8280297:64)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680315240448 owned by data record identified by RID = (1:8280297:65)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680317796352 owned by data record identified by RID = (1:8280297:66)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680321007616 owned by data record identified by RID = (1:8280297:67)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680323432448 owned by data record identified by RID = (1:8280297:68)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680326578176 owned by data record identified by RID = (1:8280297:69)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680329461760 owned by data record identified by RID = (1:8280297:70)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680332541952 owned by data record identified by RID = (1:8280297:71)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680334573568 owned by data record identified by RID = (1:8280297:72)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680335425536 owned by data record identified by RID = (1:8280297:73)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680337915904 owned by data record identified by RID = (1:8280297:74)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680340733952 owned by data record identified by RID = (1:8280297:75)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680343945216 owned by data record identified by RID = (1:8280297:76)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680346566656 owned by data record identified by RID = (1:8280297:77)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680349450240 owned by data record identified by RID = (1:8280297:78)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680352595968 owned by data record identified by RID = (1:8280297:79)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680355020800 owned by data record identified by RID = (1:8280297:80)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680358035456 owned by data record identified by RID = (1:8280297:81)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680360984576 owned by data record identified by RID = (1:8280297:82)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680363999232 owned by data record identified by RID = (1:8280297:83)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680366620672 owned by data record identified by RID = (1:8280297:84)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680369504256 owned by data record identified by RID = (1:8280297:85)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680372518912 owned by data record identified by RID = (1:8280297:86)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680374616064 owned by data record identified by RID = (1:8280297:87)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680377368576 owned by data record identified by RID = (1:8280297:88)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680379531264 owned by data record identified by RID = (1:8280297:89)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680381890560 owned by data record identified by RID = (1:8280297:90)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680384643072 owned by data record identified by RID = (1:8280297:91)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680387526656 owned by data record identified by RID = (1:8280297:92)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680390344704 owned by data record identified by RID = (1:8280297:93)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680392704000 owned by data record identified by RID = (1:8280297:94)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680395849728 owned by data record identified by RID = (1:8280297:95)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680398471168 owned by data record identified by RID = (1:8280297:96)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680400633856 owned by data record identified by RID = (1:8280297:97)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680403386368 owned by data record identified by RID = (1:8280297:98)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680406401024 owned by data record identified by RID = (1:8280297:99)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680408825856 owned by data record identified by RID = (1:8280297:100)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680411643904 owned by data record identified by RID = (1:8280297:101)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680414527488 owned by data record identified by RID = (1:8280297:102)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680417542144 owned by data record identified by RID = (1:8280297:103)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680420622336 owned by data record identified by RID = (1:8280297:104)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680422588416 owned by data record identified by RID = (1:8280297:105)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680430845952 owned by data record identified by RID = (1:8280297:108)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680433795072 owned by data record identified by RID = (1:8280297:109)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680436744192 owned by data record identified by RID = (1:8280297:110)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680442052608 owned by data record identified by RID = (1:8280297:112)
Msg 8914, Level 16, State 1, Line 1
Incorrect PFS free space information for page (1:8280298) in object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data). Expected value 50_PCT_FULL, actual value 100_PCT_FULL.
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680435826688 owned by data record identified by RID = (1:8280299:0)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680437268480 owned by data record identified by RID = (1:8280299:1)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 4680440872960 owned by data record identified by RID = (1:8280299:5)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 9856529399808 owned by data record identified by RID = (1:18212960:107)
Msg 8929, Level 16, State 1, Line 1
Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045071360 (type In-row data): Errors found in off-row data with ID 9856530120704 owned by data record identified by RID = (1:18212960:109)
Msg 2533, Level 16, State 1, Line 1
Table error: page (1:8251851) allocated to object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data) was not seen. The page may be invalid or may have an incorrect alloc unit ID in its header.
Msg 8965, Level 16, State 1, Line 1
Table error: Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). The off-row data node at page (1:8280268), slot 16, text ID 4680131739648 is referenced by page (1:8280297), slot 0, but was not seen in the scan.
Msg 8965, Level 16, State 1, Line 1
Table error: Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). The off-row data node at page (1:8280268), slot 17, text ID 4680134885376 is referenced by page (1:8280297), slot 1, but was not seen in the scan.
Msg 8965, Level 16, State 1, Line 1
Table error: Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). The off-row data node at page (1:8280268), slot 18, text ID 4680137900032 is referenced by page (1:8280297), slot 2, but was not seen in the scan.
Msg 8914, Level 16, State 1, Line 1
Incorrect PFS free space information for page (1:8280307) in object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). Expected value 50_PCT_FULL, actual value 80_PCT_FULL.
Msg 8914, Level 16, State 1, Line 1
Incorrect PFS free space information for page (1:8280308) in object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). Expected value 50_PCT_FULL, actual value 80_PCT_FULL.
Msg 8914, Level 16, State 1, Line 1
Incorrect PFS free space information for page (1:8280309) in object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). Expected value 50_PCT_FULL, actual value 80_PCT_FULL.
Msg 8914, Level 16, State 1, Line 1
Incorrect PFS free space information for page (1:8280310) in object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). Expected value 50_PCT_FULL, actual value 80_PCT_FULL.
Msg 8914, Level 16, State 1, Line 1
Incorrect PFS free space information for page (1:8280311) in object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). Expected value 50_PCT_FULL, actual value 80_PCT_FULL.
Msg 8914, Level 16, State 1, Line 1
Incorrect PFS free space information for page (1:8280336) in object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). Expected value 50_PCT_FULL, actual value 80_PCT_FULL.
Msg 8914, Level 16, State 1, Line 1
Incorrect PFS free space information for page (1:8280337) in object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). Expected value 50_PCT_FULL, actual value 80_PCT_FULL.
Msg 8914, Level 16, State 1, Line 1
Incorrect PFS free space information for page (1:8280338) in object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). Expected value 50_PCT_FULL, actual value 80_PCT_FULL.
Msg 8914, Level 16, State 1, Line 1
Incorrect PFS free space information for page (1:8280339) in object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). Expected value 50_PCT_FULL, actual value 80_PCT_FULL.
Msg 8914, Level 16, State 1, Line 1
Incorrect PFS free space information for page (1:8280340) in object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). Expected value 50_PCT_FULL, actual value 95_PCT_FULL.
Msg 8914, Level 16, State 1, Line 1
Incorrect PFS free space information for page (1:8280341) in object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). Expected value 50_PCT_FULL, actual value 80_PCT_FULL.
Msg 8914, Level 16, State 1, Line 1
Incorrect PFS free space information for page (1:8280342) in object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). Expected value 50_PCT_FULL, actual value 80_PCT_FULL.
Msg 8914, Level 16, State 1, Line 1
Incorrect PFS free space information for page (1:8280343) in object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). Expected value 50_PCT_FULL, actual value 80_PCT_FULL.
Msg 8914, Level 16, State 1, Line 1
Incorrect PFS free space information for page (1:8280352) in object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). Expected value 50_PCT_FULL, actual value 80_PCT_FULL.
Msg 8914, Level 16, State 1, Line 1
Incorrect PFS free space information for page (1:8280353) in object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). Expected value 50_PCT_FULL, actual value 80_PCT_FULL.
Msg 8914, Level 16, State 1, Line 1
Incorrect PFS free space information for page (1:8280354) in object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). Expected value 50_PCT_FULL, actual value 80_PCT_FULL.
Msg 8914, Level 16, State 1, Line 1
Incorrect PFS free space information for page (1:8280355) in object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). Expected value 50_PCT_FULL, actual value 80_PCT_FULL.
Msg 8914, Level 16, State 1, Line 1
Incorrect PFS free space information for page (1:8280356) in object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). Expected value 50_PCT_FULL, actual value 80_PCT_FULL.
Msg 8914, Level 16, State 1, Line 1
Incorrect PFS free space information for page (1:8280357) in object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). Expected value 50_PCT_FULL, actual value 80_PCT_FULL.
Msg 8914, Level 16, State 1, Line 1
Incorrect PFS free space information for page (1:8280358) in object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). Expected value 50_PCT_FULL, actual value 95_PCT_FULL.
Msg 8914, Level 16, State 1, Line 1
Incorrect PFS free space information for page (1:8280359) in object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). Expected value 50_PCT_FULL, actual value 95_PCT_FULL.
Msg 8914, Level 16, State 1, Line 1
Incorrect PFS free space information for page (1:8280368) in object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). Expected value 50_PCT_FULL, actual value 80_PCT_FULL.
Msg 8914, Level 16, State 1, Line 1
Incorrect PFS free space information for page (1:8280369) in object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). Expected value 50_PCT_FULL, actual value 80_PCT_FULL.
Msg 8914, Level 16, State 1, Line 1
Incorrect PFS free space information for page (1:8280370) in object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). Expected value 50_PCT_FULL, actual value 80_PCT_FULL.
Msg 8914, Level 16, State 1, Line 1
Incorrect PFS free space information for page (1:8280371) in object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). Expected value 50_PCT_FULL, actual value 80_PCT_FULL.
Msg 8914, Level 16, State 1, Line 1
Incorrect PFS free space information for page (1:8280372) in object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). Expected value 50_PCT_FULL, actual value 80_PCT_FULL.
Msg 8965, Level 16, State 1, Line 1
Table error: Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). The off-row data node at page (1:8280372), slot 2, text ID 4680140390400 is referenced by page (1:8280297), slot 3, but was not seen in the scan.
Msg 8965, Level 16, State 1, Line 1
Table error: Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). The off-row data node at page (1:8280372), slot 3, text ID 4680143142912 is referenced by page (1:8280297), slot 4, but was not seen in the scan.
Msg 8965, Level 16, State 1, Line 1
Table error: Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). The off-row data node at page (1:8280372), slot 4, text ID 4680146419712 is referenced by page (1:8280297), slot 5, but was not seen in the scan.
Msg 8965, Level 16, State 1, Line 1
Table error: Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). The off-row data node at page (1:8280372), slot 5, text ID 4680149172224 is referenced by page (1:8280297), slot 6, but was not seen in the scan.
Msg 8965, Level 16, State 1, Line 1
Table error: Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). The off-row data node at page (1:8280372), slot 6, text ID 4680151924736 is referenced by page (1:8280297), slot 7, but was not seen in the scan.
Msg 8965, Level 16, State 1, Line 1
Table error: Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). The off-row data node at page (1:8280372), slot 7, text ID 4680154742784 is referenced by page (1:8280297), slot 8, but was not seen in the scan.
Msg 8965, Level 16, State 1, Line 1
Table error: Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). The off-row data node at page (1:8280372), slot 8, text ID 4680157757440 is referenced by page (1:8280297), slot 9, but was not seen in the scan.
Msg 8965, Level 16, State 1, Line 1
Table error: Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). The off-row data node at page (1:8280372), slot 9, text ID 4680159920128 is referenced by page (1:8280297), slot 10, but was not seen in the scan.
Msg 8965, Level 16, State 1, Line 1
Table error: Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). The off-row data node at page (1:8280372), slot 10, text ID 4680162869248 is referenced by page (1:8280297), slot 11, but was not seen in the scan.
Msg 8965, Level 16, State 1, Line 1
Table error: Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). The off-row data node at page (1:8280372), slot 11, text ID 4680165687296 is referenced by page (1:8280297), slot 12, but was not seen in the scan.
Msg 8965, Level 16, State 1, Line 1
Table error: Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). The off-row data node at page (1:8280372), slot 12, text ID 4680168767488 is referenced by page (1:8280297), slot 13, but was not seen in the scan.
Msg 8965, Level 16, State 1, Line 1
Table error: Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). The off-row data node at page (1:8280372), slot 13, text ID 4680171454464 is referenced by page (1:8280297), slot 14, but was not seen in the scan.
Msg 8965, Level 16, State 1, Line 1
Table error: Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). The off-row data node at page (1:8280372), slot 14, text ID 4680174534656 is referenced by page (1:8280297), slot 15, but was not seen in the scan.
Msg 8965, Level 16, State 1, Line 1
Table error: Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). The off-row data node at page (1:8280372), slot 15, text ID 4680177287168 is referenced by page (1:8280297), slot 16, but was not seen in the scan.
Msg 8965, Level 16, State 1, Line 1
Table error: Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). The off-row data node at page (1:8280372), slot 16, text ID 4680180236288 is referenced by page (1:8280297), slot 17, but was not seen in the scan.
Msg 8914, Level 16, State 1, Line 1
Incorrect PFS free space information for page (1:8280373) in object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). Expected value 50_PCT_FULL, actual value 80_PCT_FULL.
Msg 8914, Level 16, State 1, Line 1
Incorrect PFS free space information for page (1:8280374) in object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). Expected value 50_PCT_FULL, actual value 80_PCT_FULL.
Msg 8914, Level 16, State 1, Line 1
Incorrect PFS free space information for page (1:8280375) in object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). Expected value 50_PCT_FULL, actual value 80_PCT_FULL.
Msg 8914, Level 16, State 1, Line 1
Incorrect PFS free space information for page (1:8280384) in object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). Expected value 50_PCT_FULL, actual value 80_PCT_FULL.
Msg 8914, Level 16, State 1, Line 1
Incorrect PFS free space information for page (1:8280385) in object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). Expected value 50_PCT_FULL, actual value 80_PCT_FULL.
Msg 8914, Level 16, State 1, Line 1
Incorrect PFS free space information for page (1:8280386) in object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). Expected value 50_PCT_FULL, actual value 80_PCT_FULL.
Msg 8914, Level 16, State 1, Line 1
Incorrect PFS free space information for page (1:8280387) in object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). Expected value 50_PCT_FULL, actual value 80_PCT_FULL.
Msg 8914, Level 16, State 1, Line 1
Incorrect PFS free space information for page (1:8280388) in object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). Expected value 50_PCT_FULL, actual value 80_PCT_FULL.
Msg 8914, Level 16, State 1, Line 1
Incorrect PFS free space information for page (1:8280389) in object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). Expected value 50_PCT_FULL, actual value 80_PCT_FULL.
Msg 8914, Level 16, State 1, Line 1
Incorrect PFS free space information for page (1:8280390) in object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). Expected value 50_PCT_FULL, actual value 80_PCT_FULL.
Msg 8914, Level 16, State 1, Line 1
Incorrect PFS free space information for page (1:8280391) in object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). Expected value 50_PCT_FULL, actual value 80_PCT_FULL.
Msg 8914, Level 16, State 1, Line 1
Incorrect PFS free space information for page (1:8280392) in object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). Expected value 50_PCT_FULL, actual value 80_PCT_FULL.
Msg 8914, Level 16, State 1, Line 1
Incorrect PFS free space information for page (1:8280393) in object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). Expected value 50_PCT_FULL, actual value 80_PCT_FULL.
Msg 8914, Level 16, State 1, Line 1
Incorrect PFS free space information for page (1:8280394) in object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). Expected value 50_PCT_FULL, actual value 95_PCT_FULL.
Msg 8914, Level 16, State 1, Line 1
Incorrect PFS free space information for page (1:8280395) in object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). Expected value 50_PCT_FULL, actual value 80_PCT_FULL.
Msg 8914, Level 16, State 1, Line 1
Incorrect PFS free space information for page (1:8280396) in object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). Expected value 50_PCT_FULL, actual value 80_PCT_FULL.
Msg 8914, Level 16, State 1, Line 1
Incorrect PFS free space information for page (1:8280397) in object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). Expected value 50_PCT_FULL, actual value 80_PCT_FULL.
Msg 8914, Level 16, State 1, Line 1
Incorrect PFS free space information for page (1:8280398) in object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). Expected value 50_PCT_FULL, actual value 80_PCT_FULL.
Msg 8914, Level 16, State 1, Line 1
Incorrect PFS free space information for page (1:8280399) in object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). Expected value 50_PCT_FULL, actual value 80_PCT_FULL.
Msg 8914, Level 16, State 1, Line 1
Incorrect PFS free space information for page (1:8280416) in object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). Expected value 50_PCT_FULL, actual value 80_PCT_FULL.
Msg 8914, Level 16, State 1, Line 1
Incorrect PFS free space information for page (1:8280417) in object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). Expected value 50_PCT_FULL, actual value 80_PCT_FULL.
Msg 8914, Level 16, State 1, Line 1
Incorrect PFS free space information for page (1:8280418) in object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). Expected value 50_PCT_FULL, actual value 80_PCT_FULL.
Msg 8914, Level 16, State 1, Line 1
Incorrect PFS free space information for page (1:8280419) in object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). Expected value 50_PCT_FULL, actual value 80_PCT_FULL.
Msg 8914, Level 16, State 1, Line 1
Incorrect PFS free space information for page (1:8280420) in object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). Expected value 50_PCT_FULL, actual value 80_PCT_FULL.
Msg 8914, Level 16, State 1, Line 1
Incorrect PFS free space information for page (1:8280421) in object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). Expected value 50_PCT_FULL, actual value 80_PCT_FULL.
Msg 8914, Level 16, State 1, Line 1
Incorrect PFS free space information for page (1:8280422) in object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). Expected value 50_PCT_FULL, actual value 80_PCT_FULL.
Msg 8914, Level 16, State 1, Line 1
Incorrect PFS free space information for page (1:8280423) in object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). Expected value 50_PCT_FULL, actual value 80_PCT_FULL.
Msg 8914, Level 16, State 1, Line 1
Incorrect PFS free space information for page (1:8280432) in object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). Expected value 50_PCT_FULL, actual value 80_PCT_FULL.
Msg 8914, Level 16, State 1, Line 1
Incorrect PFS free space information for page (1:8280433) in object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). Expected value 50_PCT_FULL, actual value 80_PCT_FULL.
Msg 8914, Level 16, State 1, Line 1
Incorrect PFS free space information for page (1:8280434) in object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). Expected value 50_PCT_FULL, actual value 80_PCT_FULL.
Msg 8965, Level 16, State 1, Line 1
Table error: Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). The off-row data node at page (1:8280434), slot 2, text ID 4680182988800 is referenced by page (1:8280297), slot 18, but was not seen in the scan.
Msg 8965, Level 16, State 1, Line 1
Table error: Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). The off-row data node at page (1:8280434), slot 3, text ID 4680185872384 is referenced by page (1:8280297), slot 19, but was not seen in the scan.
Msg 8965, Level 16, State 1, Line 1
Table error: Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). The off-row data node at page (1:8280434), slot 4, text ID 4680188821504 is referenced by page (1:8280297), slot 20, but was not seen in the scan.
Msg 8965, Level 16, State 1, Line 1
Table error: Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). The off-row data node at page (1:8280434), slot 5, text ID 4680190984192 is referenced by page (1:8280297), slot 21, but was not seen in the scan.
Msg 8965, Level 16, State 1, Line 1
Table error: Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). The off-row data node at page (1:8280434), slot 6, text ID 4680193998848 is referenced by page (1:8280297), slot 22, but was not seen in the scan.
Msg 8965, Level 16, State 1, Line 1
Table error: Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). The off-row data node at page (1:8280434), slot 7, text ID 4680196882432 is referenced by page (1:8280297), slot 23, but was not seen in the scan.
Msg 8965, Level 16, State 1, Line 1
Table error: Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). The off-row data node at page (1:8280434), slot 8, text ID 4680199634944 is referenced by page (1:8280297), slot 24, but was not seen in the scan.
Msg 8965, Level 16, State 1, Line 1
Table error: Object ID 5575058, index ID 0, partition ID 72057594038976512, alloc unit ID 72057594045136896 (type LOB data). The off-row data node at page (1:8280434), slot 9, text ID 4680202649600 is referenced by page (1:8280297), slot 25, but was not seen in the scan.
Msg 8986, Level 16, State 1, Line 1
Too many errors found (201) for object ID 5575058. To see all error messages rerun the statement using "WITH ALL_ERRORMSGS".
There are 20322947 rows in 196307 pages for object "LLCache".
CHECKDB found 0 allocation errors and 480 consistency errors in table 'LLCache' (object ID 5575058).
DBCC results for 'SPCSchedule'.
There are 0 rows in 0 pages for object "SPCSchedule".
DBCC results for 'PhysItemExt'.
There are 0 rows in 0 pages for object "PhysItemExt".
DBCC results for 'KUAF'.
There are 206 rows in 7 pages for object "KUAF".
DBCC results for 'LLDC_SystemConfig'.
There are 0 rows in 0 pages for object "LLDC_SystemConfig".
DBCC results for 'LabelDefinition'.
There are 0 rows in 0 pages for object "LabelDefinition".
DBCC results for 'KUAFChildren'.
There are 340 rows in 6 pages for object "KUAFChildren".
DBCC results for 'LLDC_UserMapping'.
There are 0 rows in 0 pages for object "LLDC_UserMapping".
DBCC results for 'LabelDefSpecs'.
There are 0 rows in 0 pages for object "LabelDefSpecs".
DBCC results for 'KUAFPrefs'.
There are 40 rows in 6 pages for object "KUAFPrefs".
DBCC results for 'LLDC_NodeRestrictions'.
There are 0 rows in 0 pages for object "LLDC_NodeRestrictions".
DBCC results for 'LabelQueue'.
There are 0 rows in 0 pages for object "LabelQueue".
DBCC results for 'KUAFRightsList'.
There are 0 rows in 2 pages for object "KUAFRightsList".
DBCC results for 'dbbv_deleted_lea'.
There are 0 rows in 0 pages for object "dbbv_deleted_lea".
DBCC results for 'LabelStock'.
There are 0 rows in 0 pages for object "LabelStock".
DBCC results for 'KUAFProxy'.
There are 0 rows in 0 pages for object "KUAFProxy".
DBCC results for 'PhysItemData'.
There are 0 rows in 0 pages for object "PhysItemData".
DBCC results for 'UserTabRights'.
There are 4 rows in 1 pages for object "UserTabRights".
DBCC results for 'PhysObjKeywords'.
There are 0 rows in 0 pages for object "PhysObjKeywords".
DBCC results for 'OldPasswords'.
There are 1 rows in 1 pages for object "OldPasswords".
DBCC results for 'PhysObjLocation'.
There are 0 rows in 0 pages for object "PhysObjLocation".
DBCC results for 'DTree'.
There are 26847884 rows in 957884 pages for object "DTree".
DBCC results for 'PhysItemRequest'.
There are 0 rows in 0 pages for object "PhysItemRequest".
DBCC results for 'DTreeACL'.
Msg 2533, Level 16, State 1, Line 1
Table error: page (1:22164264) allocated to object ID 149575571, index ID 3, partition ID 72057594041532416, alloc unit ID 72057594047889408 (type In-row data) was not seen. The page may be invalid or may have an incorrect alloc unit ID in its header.
Msg 8976, Level 16, State 1, Line 1
Table error: Object ID 149575571, index ID 3, partition ID 72057594041532416, alloc unit ID 72057594047889408 (type In-row data). Page (1:22164264) was not seen in the scan although its parent (1:7170284) and previous (1:22163935) refer to it. Check any previous errors.
Msg 8978, Level 16, State 1, Line 1
Table error: Object ID 149575571, index ID 3, partition ID 72057594041532416, alloc unit ID 72057594047889408 (type In-row data). Page (1:22164265) is missing a reference from previous page (1:22164264). Possible chain linkage problem.
There are 188401505 rows in 1100509 pages for object "DTreeACL".
CHECKDB found 0 allocation errors and 3 consistency errors in table 'DTreeACL' (object ID 149575571).
DBCC results for 'PhysObjClient'.
There are 0 rows in 0 pages for object "PhysObjClient".
DBCC results for 'DTreeNotify'.
There are 149498962 rows in 934194 pages for object "DTreeNotify".
DBCC results for 'PhysItemHistory'.
There are 0 rows in 0 pages for object "PhysItemHistory".
DBCC results for 'DVersData'.
There are 26556419 rows in 677031 pages for object "DVersData".
DBCC results for 'Facility'.
There are 0 rows in 0 pages for object "Facility".
DBCC results for 'ProviderData'.
There are 26556410 rows in 223616 pages for object "ProviderData".
DBCC results for 'Area'.
There are 0 rows in 0 pages for object "Area".
DBCC results for 'ProviderRetry'.
There are 501 rows in 8 pages for object "ProviderRetry".
DBCC results for 'LocatorType'.
There are 0 rows in 0 pages for object "LocatorType".
DBCC results for 'ProviderConfirmMove'.
There are 0 rows in 0 pages for object "ProviderConfirmMove".
DBCC results for 'RefRate'.
There are 0 rows in 0 pages for object "RefRate".
DBCC results for 'BlobData'.
There are 0 rows in 0 pages for object "BlobData".
DBCC results for 'StorageLocator'.
There are 0 rows in 0 pages for object "StorageLocator".
DBCC results for 'BlobResData'.
There are 0 rows in 0 pages for object "BlobResData".
DBCC results for 'LocLocatorType'.
There are 0 rows in 0 pages for object "LocLocatorType".
DBCC results for 'LLAttrData'.
Msg 2533, Level 16, State 1, Line 1
Table error: page (1:22164232) allocated to object ID 277576027, index ID 2, partition ID 72057594042908672, alloc unit ID 72057594049658880 (type In-row data) was not seen. The page may be invalid or may have an incorrect alloc unit ID in its header.
Msg 8976, Level 16, State 1, Line 1
Table error: Object ID 277576027, index ID 2, partition ID 72057594042908672, alloc unit ID 72057594049658880 (type In-row data). Page (1:22164232) was not seen in the scan although its parent (1:22169017) and previous (1:22164467) refer to it. Check any previous errors.
Msg 8978, Level 16, State 1, Line 1
Table error: Object ID 277576027, index ID 2, partition ID 72057594042908672, alloc unit ID 72057594049658880 (type In-row data). Page (1:22164236) is missing a reference from previous page (1:22164232). Possible chain linkage problem.
There are 108555572 rows in 1506065 pages for object "LLAttrData".
CHECKDB found 0 allocation errors and 3 consistency errors in table 'LLAttrData' (object ID 277576027).
DBCC results for 'Transfers'.
There are 0 rows in 0 pages for object "Transfers".
DBCC results for 'LLAttrBlobData'.
There are 26555990 rows in 180336 pages for object "LLAttrBlobData".
DBCC results for 'PhysObjKIni'.
There are 1 rows in 1 pages for object "PhysObjKIni".
DBCC results for 'CatRegionMap'.
There are 45 rows in 2 pages for object "CatRegionMap".
DBCC results for 'LocatorLabels'.
There are 0 rows in 0 pages for object "LocatorLabels".
DBCC results for 'DCategories'.
There are 1 rows in 1 pages for object "DCategories".
DBCC results for 'PhysObjFuncAccess'.
There are 0 rows in 0 pages for object "PhysObjFuncAccess".
DBCC results for 'DAttributes'.
There are 0 rows in 0 pages for object "DAttributes".
DBCC results for 'RequestType'.
There are 0 rows in 0 pages for object "RequestType".
DBCC results for 'DCatAttrs'.
There are 0 rows in 0 pages for object "DCatAttrs".
DBCC results for 'CustodianSite'.
There are 0 rows in 0 pages for object "CustodianSite".
DBCC results for 'DAuditNew'.
Msg 2533, Level 16, State 1, Line 1
Table error: page (1:8251827) allocated to object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050576384 (type In-row data) was not seen. The page may be invalid or may have an incorrect alloc unit ID in its header.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251836), slot 58, text ID 4665380569088 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251836), slot 60, text ID 4665380765696 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251836), slot 61, text ID 4665380831232 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251836), slot 62, text ID 4665380896768 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251836), slot 63, text ID 4665380962304 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251836), slot 70, text ID 4665382141952 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251836), slot 72, text ID 4665382273024 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251836), slot 73, text ID 4665382338560 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251836), slot 74, text ID 4665382404096 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251836), slot 75, text ID 4665382469632 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251836), slot 76, text ID 4665383452672 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251836), slot 78, text ID 4665383714816 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251836), slot 79, text ID 4665383780352 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251836), slot 80, text ID 4665383845888 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251838), slot 0, text ID 4665383911424 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251838), slot 3, text ID 4665384501248 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251838), slot 4, text ID 4665384566784 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251838), slot 5, text ID 4665384632320 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251838), slot 6, text ID 4665384697856 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251838), slot 7, text ID 4665385025536 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251838), slot 9, text ID 4665385156608 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251838), slot 10, text ID 4665385222144 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251838), slot 11, text ID 4665385287680 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251838), slot 12, text ID 4665385353216 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251838), slot 13, text ID 4665386336256 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251838), slot 15, text ID 4665386532864 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251838), slot 16, text ID 4665386598400 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251838), slot 17, text ID 4665386663936 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251838), slot 18, text ID 4665386729472 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251838), slot 19, text ID 4665387319296 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251838), slot 21, text ID 4665387384832 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251838), slot 22, text ID 4665387450368 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251838), slot 23, text ID 4665387515904 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251838), slot 24, text ID 4665387581440 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251838), slot 25, text ID 4665387909120 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251838), slot 27, text ID 4665387974656 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251838), slot 28, text ID 4665388040192 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251838), slot 29, text ID 4665388105728 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251838), slot 30, text ID 4665388171264 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251838), slot 31, text ID 4665389219840 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251838), slot 33, text ID 4665389350912 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251838), slot 34, text ID 4665389416448 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251838), slot 35, text ID 4665389547520 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251838), slot 36, text ID 4665389613056 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251838), slot 37, text ID 4665390137344 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251838), slot 39, text ID 4665390268416 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251838), slot 40, text ID 4665390333952 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251838), slot 41, text ID 4665390399488 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251838), slot 42, text ID 4665390465024 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251838), slot 43, text ID 4665390858240 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251838), slot 45, text ID 4665390989312 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251838), slot 46, text ID 4665391054848 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251838), slot 47, text ID 4665391120384 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251838), slot 48, text ID 4665391185920 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251838), slot 50, text ID 4665391579136 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251838), slot 51, text ID 4665391644672 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251838), slot 52, text ID 4665392496640 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251838), slot 54, text ID 4665392693248 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251838), slot 55, text ID 4665392758784 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251838), slot 56, text ID 4665392824320 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251838), slot 57, text ID 4665392889856 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251838), slot 58, text ID 4665393152000 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251838), slot 60, text ID 4665393283072 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251838), slot 61, text ID 4665393348608 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251838), slot 62, text ID 4665393414144 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251838), slot 63, text ID 4665393479680 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251838), slot 64, text ID 4665394528256 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251838), slot 66, text ID 4665394724864 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251838), slot 67, text ID 4665394790400 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251838), slot 68, text ID 4665394855936 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251838), slot 69, text ID 4665394921472 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251838), slot 70, text ID 4665395445760 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251838), slot 72, text ID 4665395511296 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251838), slot 73, text ID 4665395576832 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251838), slot 74, text ID 4665395707904 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251838), slot 75, text ID 4665395773440 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251838), slot 76, text ID 4665396822016 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251838), slot 78, text ID 4665396953088 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251838), slot 79, text ID 4665397018624 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251839), slot 0, text ID 4665397084160 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251839), slot 1, text ID 4665397149696 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251839), slot 2, text ID 4665397673984 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251839), slot 4, text ID 4665397739520 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251839), slot 5, text ID 4665397805056 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251839), slot 6, text ID 4665397870592 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251839), slot 7, text ID 4665397936128 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251839), slot 8, text ID 4665398263808 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251839), slot 10, text ID 4665398329344 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251839), slot 11, text ID 4665398394880 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251839), slot 12, text ID 4665398525952 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251839), slot 13, text ID 4665398591488 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251839), slot 14, text ID 4665399574528 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251839), slot 16, text ID 4665399771136 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251839), slot 17, text ID 4665399836672 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251839), slot 18, text ID 4665399902208 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251839), slot 19, text ID 4665399967744 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251839), slot 20, text ID 4665400557568 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251839), slot 22, text ID 4665400623104 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251839), slot 23, text ID 4665400688640 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251839), slot 24, text ID 4665400754176 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251839), slot 25, text ID 4665400819712 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251839), slot 26, text ID 4665401081856 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251839), slot 28, text ID 4665401212928 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251839), slot 29, text ID 4665401278464 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251839), slot 30, text ID 4665401344000 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251839), slot 31, text ID 4665401409536 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251839), slot 32, text ID 4665402523648 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251839), slot 34, text ID 4665402654720 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251839), slot 35, text ID 4665402720256 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251839), slot 36, text ID 4665402785792 is not referenced.
Msg 8964, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 0, partition ID 72057594043760640, alloc unit ID 72057594050641920 (type LOB data). The off-row data node at page (1:8251839), slot 37, text ID 4665402851328 is not referenced.
Msg 2533, Level 16, State 1, Line 1
Table error: page (1:22679920) allocated to object ID 373576369, index ID 2, partition ID 72057594043826176, alloc unit ID 72057594050707456 (type In-row data) was not seen. The page may be invalid or may have an incorrect alloc unit ID in its header.
Msg 8976, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 2, partition ID 72057594043826176, alloc unit ID 72057594050707456 (type In-row data). Page (1:22679920) was not seen in the scan although its parent (1:23010238) and previous (1:22678767) refer to it. Check any previous errors.
Msg 8978, Level 16, State 1, Line 1
Table error: Object ID 373576369, index ID 2, partition ID 72057594043826176, alloc unit ID 72057594050707456 (type In-row data). Page (1:22679921) is missing a reference from previous page (1:22679920). Possible chain linkage problem.
There are 80345424 rows in 1298337 pages for object "DAuditNew".
CHECKDB found 0 allocation errors and 115 consistency errors in table 'DAuditNew' (object ID 373576369).
DBCC results for 'Recurrence'.
There are 0 rows in 0 pages for object "Recurrence".
DBCC results for 'DAuditMore'.
There are 259824 rows in 1754 pages for object "DAuditMore".
DBCC results for 'PhysItemMicro'.
There are 0 rows in 0 pages for object "PhysItemMicro".
DBCC results for 'DiscussionID'.
There are 0 rows in 0 pages for object "DiscussionID".
DBCC results for 'rimsNodeClassification'.
There are 26840070 rows in 418038 pages for object "rimsNodeClassification".
DBCC results for 'DReadList'.
There are 0 rows in 0 pages for object "DReadList".
DBCC results for 'RM_CLASSIFICATION'.
There are 23 rows in 2 pages for object "RM_CLASSIFICATION".
DBCC results for 'DDelList'.
There are 0 rows in 0 pages for object "DDelList".
DBCC results for 'RM_DISPOSITIONS'.
There are 6 rows in 1 pages for object "RM_DISPOSITIONS".
DBCC results for 'DTopicItems'.
There are 0 rows in 0 pages for object "DTopicItems".
DBCC results for 'RM_DISPRESULTS'.
There are 0 rows in 0 pages for object "RM_DISPRESULTS".
DBCC results for 'Assignees'.
There are 0 rows in 0 pages for object "Assignees".
DBCC results for 'RM_PickList'.
There are 12 rows in 1 pages for object "RM_PickList".
DBCC results for 'ComponentSettings'.
There are 0 rows in 0 pages for object "ComponentSettings".
DBCC results for 'RM_RecordsOfficers'.
There are 0 rows in 0 pages for object "RM_RecordsOfficers".
DBCC results for 'ProjectOverviewSettings'.
There are 0 rows in 0 pages for object "ProjectOverviewSettings".
DBCC results for 'RM_UserAudit'.
There are 322 rows in 8 pages for object "RM_UserAudit".
DBCC results for 'IconBarDisplay'.
There are 0 rows in 0 pages for object "IconBarDisplay".
DBCC results for 'RM_DeleteAudit'.
There are 544 rows in 18 pages for object "RM_DeleteAudit".
DBCC results for 'Nickname'.
There are 0 rows in 0 pages for object "Nickname".
DBCC results for 'RM_TempData'.
There are 0 rows in 0 pages for object "RM_TempData".
DBCC results for 'LLSystemData'.
There are 16 rows in 1 pages for object "LLSystemData".
DBCC results for 'RM_RecordsManagers'.
There are 0 rows in 0 pages for object "RM_RecordsManagers".
DBCC results for 'RM_MultiClass'.
There are 26840070 rows in 184251 pages for object "RM_MultiClass".
DBCC results for 'RM_AddRights'.
There are 0 rows in 0 pages for object "RM_AddRights".
DBCC results for 'AgentConfig'.
There are 1 rows in 1 pages for object "AgentConfig".
DBCC results for 'RM_DocXRef'.
There are 0 rows in 0 pages for object "RM_DocXRef".
DBCC results for 'AgentSchedule'.
There are 26 rows in 3 pages for object "AgentSchedule".
DBCC results for 'RM_Functions'.
There are 50 rows in 1 pages for object "RM_Functions".
DBCC results for 'NotifyInterests2'.
There are 0 rows in 0 pages for object "NotifyInterests2".
DBCC results for 'RM_AssignedFunctions'.
There are 0 rows in 0 pages for object "RM_AssignedFunctions".
DBCC results for 'NotifyEvents'.
There are 0 rows in 34608 pages for object "NotifyEvents".
DBCC results for 'ACCESSION'.
There are 0 rows in 0 pages for object "ACCESSION".
DBCC results for 'LLEventQueue'.
There are 14268555 rows in 240166 pages for object "LLEventQueue".
DBCC results for 'DocXRefTyp'.
There are 0 rows in 0 pages for object "DocXRefTyp".
DBCC results for 'NotifyMessages'.
There are 0 rows in 0 pages for object "NotifyMessages".
DBCC results for 'RelatType'.
There are 5 rows in 1 pages for object "RelatType".
DBCC results for 'SOVControlRules'.
There are 36 rows in 9 pages for object "SOVControlRules".
DBCC results for 'ThesRelations'.
There are 0 rows in 0 pages for object "ThesRelations".
DBCC results for 'SOVMgmtMsgs'.
There are 50 rows in 5 pages for object "SOVMgmtMsgs".
DBCC results for 'ThesTerms'.
There are 0 rows in 0 pages for object "ThesTerms".
DBCC results for 'DVersExtraData'.
There are 2 rows in 1 pages for object "DVersExtraData".
DBCC results for 'ThesHistory'.
There are 0 rows in 0 pages for object "ThesHistory".
DBCC results for 'DStagingImport'.
There are 0 rows in 0 pages for object "DStagingImport".
DBCC results for 'TermLevel'.
There are 6 rows in 1 pages for object "TermLevel".
DBCC results for 'FileCache'.
There are 0 rows in 1 pages for object "FileCache".
DBCC results for 'ActionCode'.
There are 7 rows in 1 pages for object "ActionCode".
DBCC results for 'DObjectRank'.
There are 43 rows in 3 pages for object "DObjectRank".
DBCC results for 'DateToUse'.
There are 8 rows in 1 pages for object "DateToUse".
DBCC results for 'DISPOSITION'.
There are 2 rows in 1 pages for object "DISPOSITION".
DBCC results for 'DispositionHold'.
There are 0 rows in 0 pages for object "DispositionHold".
DBCC results for 'ESS_RECORDS'.
There are 2 rows in 1 pages for object "ESS_RECORDS".
DBCC results for 'FILE_STATUS'.
There are 4 rows in 1 pages for object "FILE_STATUS".
DBCC results for 'HoldType'.
There are 3 rows in 1 pages for object "HoldType".
DBCC results for 'OBJECT'.
There are 1 rows in 1 pages for object "OBJECT".
DBCC results for 'OTDOCUMENTHold'.
There are 0 rows in 0 pages for object "OTDOCUMENTHold".
DBCC results for 'RetStage'.
There are 4 rows in 1 pages for object "RetStage".
DBCC results for 'RIMSDBVersion'.
There are 0 rows in 0 pages for object "RIMSDBVersion".
DBCC results for 'RIMSKeyworded'.
There are 6 rows in 1 pages for object "RIMSKeyworded".
DBCC results for 'RimsTables'.
There are 26 rows in 1 pages for object "RimsTables".
DBCC results for 'RSI'.
There are 2 rows in 1 pages for object "RSI".
DBCC results for 'RSIEventSched'.
There are 6 rows in 1 pages for object "RSIEventSched".
DBCC results for 'RSIKeywords'.
There are 8 rows in 1 pages for object "RSIKeywords".
DBCC results for 'RSIRuleCode'.
There are 3 rows in 1 pages for object "RSIRuleCode".
DBCC results for 'RSIStatus'.
There are 3 rows in 1 pages for object "RSIStatus".
DBCC results for 'SPECIAL_CHARACTERS'.
There are 28 rows in 1 pages for object "SPECIAL_CHARACTERS".
DBCC results for 'STORAGE'.
There are 3 rows in 1 pages for object "STORAGE".
DBCC results for 'TABLES'.
There are 15 rows in 1 pages for object "TABLES".
DBCC results for 'JurisdCode'.
There are 2 rows in 1 pages for object "JurisdCode".
DBCC results for 'Justification'.
There are 0 rows in 0 pages for object "Justification".
DBCC results for 'DSubObjectRank'.
There are 17 rows in 2 pages for object "DSubObjectRank".
DBCC results for 'RetCode'.
There are 0 rows in 0 pages for object "RetCode".
DBCC results for 'RSIJustify'.
There are 0 rows in 0 pages for object "RSIJustify".
DBCC results for 'RM_Queue'.
There are 0 rows in 0 pages for object "RM_Queue".
DBCC results for 'DTreeNotifyRecover'.
There are 0 rows in 0 pages for object "DTreeNotifyRecover".
DBCC results for 'RM_DispRejects'.
There are 0 rows in 0 pages for object "RM_DispRejects".
DBCC results for 'BestBetsData'.
There are 0 rows in 0 pages for object "BestBetsData".
DBCC results for 'RM_DispSnapshots'.
There are 0 rows in 0 pages for object "RM_DispSnapshots".
DBCC results for 'BestBetsSearch'.
There are 0 rows in 0 pages for object "BestBetsSearch".
DBCC results for 'RM_PartRecords'.
There are 0 rows in 0 pages for object "RM_PartRecords".
DBCC results for 'Collections'.
There are 0 rows in 0 pages for object "Collections".
DBCC results for 'RM_RecordTypeData'.
There are 0 rows in 0 pages for object "RM_RecordTypeData".
DBCC results for 'AuditCollectionsItems'.
There are 0 rows in 0 pages for object "AuditCollectionsItems".
DBCC results for 'RM_DocRecType'.
There are 0 rows in 0 pages for object "RM_DocRecType".
DBCC results for 'LLPolling'.
There are 0 rows in 0 pages for object "LLPolling".
DBCC results for 'RM_LINKRR'.
There are 0 rows in 0 pages for object "RM_LINKRR".
DBCC results for 'Recd_OperationSummary'.
There are 0 rows in 8900 pages for object "Recd_OperationSummary".
DBCC results for 'RM_LINKRS'.
There are 0 rows in 0 pages for object "RM_LINKRS".
DBCC results for 'Recd_OpinionSummary'.
There are 0 rows in 0 pages for object "Recd_OpinionSummary".
DBCC results for 'RSIApproval'.
There are 6 rows in 1 pages for object "RSIApproval".
DBCC results for 'Recd_SystemStatsSummary'.
There are 1 rows in 1 pages for object "Recd_SystemStatsSummary".
DBCC results for 'RSIApprovalHistory'.
There are 0 rows in 0 pages for object "RSIApprovalHistory".
DBCC results for 'Recd_AdminConfig'.
There are 12 rows in 1 pages for object "Recd_AdminConfig".
DBCC results for 'RM_FixedRet'.
There are 0 rows in 0 pages for object "RM_FixedRet".
DBCC results for 'DTreeAncestors'.
There are 160762448 rows in 515686 pages for object "DTreeAncestors".
DBCC results for 'ProvenanceType'.
There are 0 rows in 0 pages for object "ProvenanceType".
DBCC results for 'Recd_OperationTracking'.
There are 26833233 rows in 246682 pages for object "Recd_OperationTracking".
DBCC results for 'RM_Provenance'.
There are 0 rows in 0 pages for object "RM_Provenance".
DBCC results for 'Recd_Hot'.
There are 50 rows in 12 pages for object "Recd_Hot".
DBCC results for 'RM_ProvenanceHistory'.
There are 0 rows in 0 pages for object "RM_ProvenanceHistory".
DBCC results for 'searchstats_query'.
There are 96 rows in 4 pages for object "searchstats_query".
DBCC results for 'RM_ClassJustify'.
There are 0 rows in 0 pages for object "RM_ClassJustify".
DBCC results for 'RM_KIni'.
There are 0 rows in 0 pages for object "RM_KIni".
DBCC results for 'searchstats_component'.
There are 190 rows in 5 pages for object "searchstats_component".
DBCC results for 'searchstats_terms'.
There are 107 rows in 4 pages for object "searchstats_terms".
DBCC results for 'searchstats_slice'.
There are 96 rows in 4 pages for object "searchstats_slice".
DBCC results for 'LLProspector'.
There are 0 rows in 0 pages for object "LLProspector".
DBCC results for 'LLProspectorRegistry'.
There are 0 rows in 0 pages for object "LLProspectorRegistry".
DBCC results for 'LLProspectorData'.
There are 0 rows in 0 pages for object "LLProspectorData".
DBCC results for 'WWork'.
There are 0 rows in 0 pages for object "WWork".
DBCC results for 'WWorkACL'.
There are 0 rows in 0 pages for object "WWorkACL".
DBCC results for 'WSubWork'.
There are 0 rows in 0 pages for object "WSubWork".
DBCC results for 'WSubWorkTask'.
There are 0 rows in 0 pages for object "WSubWorkTask".
DBCC results for 'WWorkAudit'.
There are 0 rows in 0 pages for object "WWorkAudit".
DBCC results for 'eLinkSubscription'.
There are 0 rows in 0 pages for object "eLinkSubscription".
DBCC results for 'WMap'.
There are 0 rows in 0 pages for object "WMap".
DBCC results for 'eLinkAlias'.
There are 1 rows in 1 pages for object "eLinkAlias".
DBCC results for 'WMapTask'.
There are 0 rows in 0 pages for object "WMapTask".
DBCC results for 'eLinkUnhandledEvent'.
There are 0 rows in 0 pages for object "eLinkUnhandledEvent".
DBCC results for 'WData'.
There are 0 rows in 0 pages for object "WData".
DBCC results for 'eLinkMessages'.
There are 0 rows in 0 pages for object "eLinkMessages".
DBCC results for 'WLock'.
There are 0 rows in 0 pages for object "WLock".
DBCC results for 'eLinkMessageLog'.
There are 0 rows in 0 pages for object "eLinkMessageLog".
DBCC results for 'WFAttrData'.
There are 0 rows in 0 pages for object "WFAttrData".
DBCC results for 'WFAttrDataVersions'.
There are 0 rows in 0 pages for object "WFAttrDataVersions".
DBCC results for 'WFComments'.
There are 0 rows in 0 pages for object "WFComments".
DBCC results for 'WFDispositions'.
There are 0 rows in 0 pages for object "WFDispositions".
DBCC results for 'WIndexNotify'.
There are 0 rows in 0 pages for object "WIndexNotify".
DBCC results for 'DAVLock'.
There are 0 rows in 0 pages for object "DAVLock".
DBCC results for 'DAVProp'.
There are 40 rows in 5 pages for object "DAVProp".
DBCC results for 'DAVBName'.
There are 0 rows in 3 pages for object "DAVBName".
DBCC results for 'DAVExtRef'.
There are 0 rows in 0 pages for object "DAVExtRef".
DBCC results for 'DAVUserMap'.
There are 0 rows in 0 pages for object "DAVUserMap".
DBCC results for 'DepartmentMapping'.
There are 1 rows in 1 pages for object "DepartmentMapping".
DBCC results for 'gdcRecycleBin'.
There are 1260 rows in 16 pages for object "gdcRecycleBin".
DBCC results for 'LLDS_UserData'.
There are 153 rows in 3 pages for object "LLDS_UserData".
DBCC results for 'OTEmailProperties'.
There are 0 rows in 0 pages for object "OTEmailProperties".
DBCC results for 'oi_status'.
There are 637 rows in 15 pages for object "oi_status".
DBCC results for 'OTEmailCustomProperties'.
There are 0 rows in 0 pages for object "OTEmailCustomProperties".
DBCC results for 'OTEmailBodies'.
There are 0 rows in 0 pages for object "OTEmailBodies".
DBCC results for 'sys.queue_messages_1977058079'.
There are 0 rows in 0 pages for object "sys.queue_messages_1977058079".
DBCC results for 'dbbv_report'.
There are 0 rows in 0 pages for object "dbbv_report".
DBCC results for 'OTEmailParticipants'.
There are 0 rows in 0 pages for object "OTEmailParticipants".
DBCC results for 'OTEmailMessageIDs'.
There are 0 rows in 0 pages for object "OTEmailMessageIDs".
DBCC results for 'sys.queue_messages_2009058193'.
There are 0 rows in 0 pages for object "sys.queue_messages_2009058193".
DBCC results for 'DeletedDocs'.
There are 0 rows in 0 pages for object "DeletedDocs".
DBCC results for 'OfflineInterests'.
There are 0 rows in 0 pages for object "OfflineInterests".
DBCC results for 'ExplorerUsage'.
There are 1 rows in 1 pages for object "ExplorerUsage".
DBCC results for 'sys.queue_messages_2041058307'.
There are 0 rows in 0 pages for object "sys.queue_messages_2041058307".
DBCC results for 'WFForms'.
There are 0 rows in 0 pages for object "WFForms".
DBCC results for 'KDual'.
There are 1 rows in 1 pages for object "KDual".
DBCC results for 'WFFormsVersions'.
There are 0 rows in 0 pages for object "WFFormsVersions".
DBCC results for 'KID'.
There are 1 rows in 1 pages for object "KID".
DBCC results for 'WFFormsLock'.
There are 0 rows in 0 pages for object "WFFormsLock".
DBCC results for 'KLong'.
There are 0 rows in 0 pages for object "KLong".
DBCC results for 'SPCJob'.
There are 0 rows in 0 pages for object "SPCJob".
DBCC results for 'LLClassify'.
There are 26840070 rows in 246793 pages for object "LLClassify".
DBCC results for 'KIni'.
There are 281 rows in 5 pages for object "KIni".
DBCC results for 'SPCStatistics'.
There are 0 rows in 0 pages for object "SPCStatistics".
DBCC results for 'MediaTypes'.
There are 0 rows in 0 pages for object "MediaTypes".
DBCC results for 'KState'.
There are 152 rows in 3 pages for object "KState".
DBCC results for 'SPCRequest'.
There are 26544196 rows in 155234 pages for object "SPCRequest".
CHECKDB found 0 allocation errors and 607 consistency errors in database 'LES'.
repair_allow_data_loss is the minimum repair level for the errors found by DBCC CHECKDB (LES).
DBCC execution completed. If DBCC printed error messages, contact your system administrator.
Viewing 15 posts - 16 through 30 (of 34 total)
You must be logged in to reply to this topic. Login to reply