SQL Server Detected A Logical Consistency-based I/

Mar 16, 2008

This local test DB was doing just fine. I fire up SQL Server again, and all of a sudden I can't access it (expend the database in Management Studio). So I detach and try to run this script which was run initially to re-attach it:

USE [master]
GO
CREATE DATABASE [ABS] ON
( FILENAME = N'C:DatabaseABS.mdf' ),
( FILENAME = N'C:DatabaseABS_log.ldf' )
FOR ATTACH
GO
if not exists (select name from master.sys.databases sd where name = N'CMS' and SUSER_SNAME(sd.owner_sid) = SUSER_SNAME() ) EXEC [CMS].dbo.sp_changedbowner @loginame=N'domain estuser', @map=false
GO

and I get this error: SQL Server detected a logical consistency-based I/O error: torn page

View 1 Replies


ADVERTISEMENT

SQL Server Detected A Logical Consistency-based I/O Error

Mar 15, 2007

Did anyone familiar with these errors:

SQL Server detected a logical consistency-based I/O error: incorrect checksum (expected: 0x1a00d2fd; actual: 0x1a02d2fd). It occurred during a read of page (1:103329) in database ID 11 at offset 0x00000032742000 in file 'C:Program FilesMicrosoft SQL ServerMSSQL.1MSSQLDATAServer02.mdf'. Additional messages in the SQL Server error log or system event log may provide more detail. This is a severe error condition that threatens database integrity and must be corrected immediately. Complete a full database c (Source: MSSQLServer, Error number: 824)
Get help: http://help/824

Thank you.

TJ_1



View 17 Replies View Related

SQL Ser. Detected A Logical Consistency-based I/O.

Dec 21, 2007

Hi

When I am running sp there i am getting below error. I have try dbcc checkdb but there he didn't show any error. Please help me

Error:
Msg 824, Level 24, State 2, Line 1
SQL Server detected a logical consistency-based I/O error:
incorrect pageid (expected 1:5276956; actual 0:496).
It occurred during a read of page (1:5276956) in database ID 16 at offset 0x00000a10a38000 in file
'F:xxxxxx_data.MDF'.
Additional messages in the SQL Server error log or system event log may provide more detail.
This is a severe error condition that threatens database integrity and must be corrected immediately.
Complete a full database consistency check (DBCC CHECKDB). This error can be caused by many factors;
for more information, see SQL Server Books Online.

Thanks & Regards

Santosh

View 1 Replies View Related

Loical Consistency-based I/O Error

Oct 9, 2007

Hi,
In my database, when I try to start sql service, I got following message in event view.

SQL server is sql express version
Microsoft SQL Server 2005 - 9.00.3054.00 (Intel X86) Mar 23 2007 16:28:52 Copyright (c) 1988-2005 Microsoft Corporation Developer Edition on Windows NT 5.1 (Build 2600: Service Pack 2)

10/09/2007 10:48:47,spid5s,Unknown,Recovery is complete. This is an informational message only. No user action is required.
10/09/2007 10:48:47,spid15s,Unknown,SQL Server detected a logical consistency-based I/O error: incorrect pageid (expected 1:9; actual 0:0). It occurred during a read of page (1:9) in database ID 8 at offset 0x00000000012000 in file 'C:Program FilesMicrosoft SQL ServerMSSQL.1MSSQLDATAmagirisilica_s24.mdf'. Additional messages in the SQL Server error log or system event log may provide more detail. This is a severe error condition that threatens database integrity and must be corrected immediately. Complete a full database consistency check (DBCC CHECKDB). This error can be caused by many factors; for more information<c/> see SQL Server Books Online.
10/09/2007 10:48:47,spid15s,Unknown,Error: 824<c/> Severity: 24<c/> State: 2.

When I try to make
dbcc dbcheckdb ...
I got this.

Msg 945, Level 14, State 2, Line 1
Database 'magirisilica_s24' cannot be opened due to inaccessible files or insufficient memory or disk space. See the SQL Server errorlog for details.


Any suggest.

Thanks in advance
Radovan

View 3 Replies View Related

Logic Consistency-based I/o Error. Dbcc Checkdb

Nov 27, 2007

every few days i'm getting an error in the application log , eventID 824, saying 'SQL Server detected a logical consistency-based i/o error; incorrect checksum. it then recommends completing a full database consistency check (dbcc checkdb).

i have run the dbcc checkdb ('databasename') and it is returning an error msg of:

Msg 8697, Level 16, State 215, Line 1
An internal error occurred in DBCC which prevented further processing
Msg 8921, Level 16, State 1, Line 1
Check terminated. A failure was detected while collecting facts. Possibly tempdb out of space or a system table is inconsistent. Check previous errors

i have oodles of disk space left. any ideas on where to go from here.

thank you for any help,
-Mark

View 3 Replies View Related

SQL Server 2014 :: Inconsistency Error Detected During Internal Operation

Jan 15, 2015

While selecting table data I m getting below error

Msg 5243, Level 22, State 8, Line 2

An inconsistency was detected during an internal operation. Please contact technical support.

View 9 Replies View Related

Logical XOR Operator In T-SQL (SQL Server 2000)

Sep 5, 2006

Hi all....

I was wondering why SQL Server 2000 lacks a logical XOR operator. Do you have a ready to use function that implements it?

How can I program one by myself? I know that A XOR B is equivalent to NOT A * B + A * NOT B. So I tried to create this function :

CREATE FUNCTION XOR

(

-- Add the parameters for the function here

@A BIT,

@B BIT

)

RETURNS BIT

AS

BEGIN

RETURN NOT @A AND @B OR @A + NOT @B

END

But it didn't compile.

How can I pass boolean values as parameters? any other hint?

Thanks

Jaime

View 12 Replies View Related

SQL Server 2005 Large IO And Logical Reads

May 22, 2008

A table in one of my databases is running very slowly. The IO is very high and below is a printout from the SET STATISTICS IO ON command run on a common query used on the table:


(4162 row(s) affected)

Table 'WebProxyLog'. Scan count 3, logical reads 873660, physical reads 3493, read-ahead reads 505939, lob logical reads 0, lob physical reads 0, lob read-ahead reads 0.

I have a clustered unique index and a nonclustered index on the table. I have ran SQL Profiler and opened the trace in Database Tuning Advisor, DTA displays 0% improvement suggestions. I have a number of statistics on the table and index which are all up to date and fragmentation is less than 1%. I've tried a number of variations on indexes to improve performance but to no avail. There is only one query which runs on the table, and the nonclustered index created on the table did significantly improve performance, however the query still runs at around 23 seconds. The query does bring back a large amount of data however i'm sure there is a way to bring down the IO and logical reads to improve performance.

The table and index scripts are below:




Code Snippet
-- =================== Table and Clustered index ===========================
CREATE TABLE [dbo].[WebProxyLog](
[ClientIP] [bigint] NULL,
[ClientUserName] [nvarchar](514) NULL,
[ClientAgent] [varchar](128) NULL,
[ClientAuthenticate] [smallint] NULL,
[logTime] [datetime] NULL,
[servername] [nvarchar](32) NULL,
[DestHost] [varchar](255) NULL,
[DestHostIP] [bigint] NULL,
[DestHostPort] [int] NULL,
[bytesrecvd] [bigint] NULL,
[bytessent] [bigint] NULL,
[protocol] [varchar](12) NULL,
[transport] [varchar](8) NULL,
[operation] [varchar](24) NULL,
[uri] [varchar](2048) NULL,
[mimetype] [varchar](32) NULL,
[objectsource] [smallint] NULL,
[rule] [nvarchar](128) NULL,
[SrcNetwork] [nvarchar](128) NULL,
[DstNetwork] [nvarchar](128) NULL,
[Action] [smallint] NULL,
[WebProxyLogid] [int] IDENTITY(1,1) NOT NULL,
CONSTRAINT [pk_webproxylog_webproxylogid] PRIMARY KEY CLUSTERED
(
[WebProxyLogid] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]

-- =================== Nonclustered Index ===========================

CREATE NONCLUSTERED INDEX [dta_ix_WebProxyLog_Kaction_clientusername_logtime_uri_mimetype_webproxylogid] ON [dbo].[WebProxyLog]
(
[Action] ASC
)
INCLUDE ( [ClientUserName],
[logTime],
[uri],
[mimetype],
[WebProxyLogid]) WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]

-- =================== Query which is called regularly on the table ===========================

SELECT [User] = CASE
WHEN LEFT(clientusername,3) = domain' THEN RIGHT(clientusername,LEN(clientusername) - 3)
ELSE clientusername
END,
logtime AS [Date],
desthost AS [Site],
uri AS [Actual Site]
FROM webproxylog
WHERE CONVERT(Datetime,CONVERT(VarChar(25),logtime,106),106) BETWEEN '20 apr 2008' AND '14 may 2008'
AND(RIGHT(uri,4) NOT IN('.css','.jpg','.gif','.png','.bmp','.vbs'))
AND (RIGHT(uri,3) NOT IN('.js'))
AND LEFT(mimetype,6) = 'text/h'
AND (uri NOT LIKE '%sometext.local%')
AND (uri NOT LIKE '%sometext.co.uk%')
AND [action] = 9
AND (clientusername IN ('USERNAME'))
ORDER BY logtime ASC;





PS There are 60,078,605 rows in the table

Please help!

Many Thanks

View 6 Replies View Related

SQL Server 2012 :: Summing Logical Reads Each Day For A Server

Oct 2, 2014

We would like to benchmark our logical reads daily to show our improvement as we tune the queries over time.

I am using sys.dm_exec_query_stats summing the Physical and Logical Reads. Is this a viable option for gathering this metric? Is this a viable metric to gather?

select sum(total_physical_reads) as TotalPhyReads, sum(total_logical_reads) as TotalLogReads from sys.dm_exec_query_stats;

How best to provide performance based metrics.

View 4 Replies View Related

SQL Server 2008 :: Error Renaming Logical Filename

Feb 27, 2015

I have a SQL Server 2008 R2 Cluster. I have moved a file to another drive by adding a new file on the drive, doing a shrinkfile with emptyfile. I have removed the old file and when I try to rename the new file to the old files old name, I get an error.

ALTER DATABASE mydb REMOVE FILE myfilename
Msg 5009, Level 16, State 9, Line 1
One or more files listed in the statement could not be found or could not be initialized.

ALTER DATABASE mydb
modify FILE ( NAME = temp_filename
, NEWNAME = myfilename
)
Msg 1828, Level 16, State 3, Line 4

The logical file name "myfilename" is already in use. Choose a different name.

I have completed a failover, thinking the name was being held in cache. I've also renamed to something completely different then tried to rename to the old filename.

View 9 Replies View Related

SQL Server 2008 :: Renaming Logical File Names

Apr 30, 2015

Is there any danger with renaming the LOGICAL file names behind the database?

There are a bunch of databases that were restored copies and all of them have the same logical database file name. I'm trying to get some growth data so I want the logical files to be different (prefer them to match the actual database name) so I can more easily identify them.

For instance:

database_id name type_desc name physical_name
1 DLMdb1 ROWS DLMDB1 D:dlmdb1.mdf
1 DLMdb1 LOG DLMDB1_log E:dlmdb1.ldf
2 DLMdb2 ROWS DLMDB1 D:dlmdb2.mdf
2 DLMdb2 LOG DLMDB1_log E:dlmdb2.ldf
3 DLMdb3 ROWS DLMDB1 D:dlmdb3.mdf
3 DLMdb3 LOG DLMDB1_log E:dlmdb3.ldf

Am I safe to rename the logical names? I can't think of anything that references those logical file names that I would be breaking [backups, applications].

View 3 Replies View Related

SQL Server 2008 :: Logical And Physical File Names Of All Databases

Apr 3, 2011

Is there a query or sp that I can pull all databases on the server along with their logical file names and physical file names?

View 5 Replies View Related

SQL Server Admin 2014 :: TempDB Configuration For 24 Logical Cores

Aug 27, 2015

I have a server with 2 processors, 12 cores each making it a 24 core logical system.

My tempdb has 4 datafiles and 4 logfiles created.

I know creating more number of log files in tempdb may not make sense, but how many tempdb data files are supposed to be created?

Should it be 24?

View 4 Replies View Related

Days Are Not Detected

Apr 7, 2008

Hi, I used the following query to update my columns according to the change of time and days of the week. But my query is not working as it should. Today is Tuesday and the time now is 9am so according to my query Mon_Night column should be updated but Sat_Night column is being updated when i execute the query. Please advice..

declare @Weekday bit, @hour int

select @Weekday = datepart(dw,getdate()),@hour= datepart(hh,getdate())

Update Weekly set
Sat_Night=CASE WHEN (@Weekday= 1 and (@hour> 7 AND @hour<=19))

THEN ALD.EngTime ELSE NULL END,

Sun_Day=CASE WHEN (@Weekday= 1 and (@hour > 18 AND @hour < 7))

THEN ALD.EngTime ELSE NULL END,

Sun_Night=CASE WHEN (@Weekday= 2 and (@hour> 7 AND @hour<=19))

THEN ALD.EngTime ELSE NULL END,

Mon_Day=CASE WHEN (@Weekday= 2 and (@hour > 18 AND @hour < 7))

THEN ALD.EngTime ELSE NULL END,

Mon_Night=CASE WHEN (@Weekday= 3 and (@hour> 7 AND @hour<=19))

THEN ALD.EngTime ELSE NULL END,

Tue_Day=CASE WHEN (@Weekday= 3 and (@hour > 18 AND @hour < 7))

THEN ALD.EngTime ELSE NULL END,

Tue_Night=CASE WHEN (@Weekday= 4 and (@hour> 7 AND @hour<=19))

THEN ALD.EngTime ELSE NULL END,

Wed_Day=CASE WHEN (@Weekday= 4 and (@hour > 18 AND @hour < 7))

THEN ALD.EngTime ELSE NULL END,

Wed_Night=CASE WHEN (@Weekday= 5 and (@hour> 7 AND @hour<=19))

THEN ALD.EngTime ELSE NULL END,

Thu_Day=CASE WHEN (@Weekday= 5 and (@hour > 18 AND @hour < 7))

THEN ALD.EngTime ELSE NULL END,

Thu_Night=CASE WHEN (@Weekday= 6 and (@hour> 7 AND @hour<=19))

THEN ALD.EngTime ELSE NULL END,

Fri_Day=CASE WHEN (@Weekday= 6 and (@hour > 18 AND @hour < 7))

THEN ALD.EngTime ELSE NULL END,

Fri_Night=CASE WHEN (@Weekday= 7 and (@hour> 7 AND @hour<=19))

THEN ALD.EngTime ELSE NULL END,

Sat_Day=CASE WHEN (@Weekday= 7 and (@hour > 18 AND @hour < 7))

THEN ALD.EngTime ELSE NULL END
from ALD join Weekly on Weekly.TesterID = ALD.TesterID

View 18 Replies View Related

Thread Starvation Detected

Apr 19, 2001

Any practical suggestions as to how to elminate this error as result of script executions?

Thanks,

Steve Brown

View 1 Replies View Related

An Inconsistency Was Detected During An Internal O

Feb 2, 2008

I am going crazy!!
We have a new server with 80GB RAM.
I restore a database a little over 3TB, EXEC DBCC CHECKDB and receive the output below which conitues to error on tempdb any idea why tempdb?? Thanks for any help!!

****
Msg 5242, Level 16, State 1, Server KNXPNAETLSQL2005, Line 1
An inconsistency was detected during an internal operation in database 'tempdb'(ID:2) on page (17:4003567). Please contact technical support. Reference number 4.
The statement has been terminated.
Msg 5242, Level 16, State 1, Server KNXPNAETLSQL2005, Line 1
An inconsistency was detected during an internal operation in database 'tempdb'(ID:2) on page (15:913355). Please contact technical support. Reference number 3.
The statement has been terminated.
Msg 5242, Level 16, State 1, Server KNXPNAETLSQL2005, Line 1
An inconsistency was detected during an internal operation in database 'tempdb'(ID:2) on page (9:3514551). Please contact technical support. Reference number 4.
The statement has been terminated.
Msg 5242, Level 16, State 1, Server KNXPNAETLSQL2005, Line 1
An inconsistency was detected during an internal operation in database 'tempdb'(ID:2) on page (18:2808171). Please contact technical support. Reference number 4.
The statement has been terminated.
DBCC results for 'SalesDM'.
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.
DBCC results for 'sys.sysrowsetcolumns'.
There are 16874 rows in 122 pages for object "sys.sysrowsetcolumns".
DBCC results for 'sys.sysrowsets'.
There are 2240 rows in 16 pages for object "sys.sysrowsets".
DBCC results for 'sysallocunits'.
There are 2253 rows in 30 pages for object "sysallocunits".
DBCC results for 'sys.sysfiles1'.
There are 70 rows in 8 pages for object "sys.sysfiles1".
DBCC results for 'sys.syshobtcolumns'.
There are 16880 rows in 142 pages for object "sys.syshobtcolumns".
DBCC results for 'sys.syshobts'.
There are 2240 rows in 16 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 2253 rows in 12 pages for object "sys.sysserefs".
DBCC results for 'sys.sysowners'.
There are 34 rows in 1 pages for object "sys.sysowners".
DBCC results for 'sys.sysprivs'.
There are 180 rows in 1 pages for object "sys.sysprivs".
DBCC results for 'sys.sysschobjs'.
There are 1271 rows in 24 pages for object "sys.sysschobjs".
DBCC results for 'sys.syscolpars'.
There are 16219 rows in 313 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 14 rows in 4 pages for object "sys.sysxprops".
DBCC results for 'sys.sysscalartypes'.
There are 28 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 8087 rows in 172 pages for object "sys.sysidxstats".
DBCC results for 'sys.sysiscols'.
There are 8981 rows in 72 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 8428 rows in 5734 pages for object "sys.sysobjvalues".
DBCC results for 'sys.sysclsobjs'.
There are 82 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 293 rows in 2 pages for object "sys.syssingleobjrefs".
DBCC results for 'sys.sysmultiobjrefs'.
There are 12726 rows in 93 pages for object "sys.sysmultiobjrefs".
DBCC results for 'sys.sysdbfiles'.
There are 70 rows in 4 pages for object "sys.sysdbfiles".
DBCC results for 'sys.sysguidrefs'.
There are 68 rows in 1 pages for object "sys.sysguidrefs".
DBCC results for 'sys.sysqnames'.
There are 92 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 'FctTenderBridge200706'.
There are 26653646 rows in 69231 pages for object "FctTenderBridge200706".
DBCC results for 'FctInventoryDetailOverShort200609'.
There are 908219 rows in 18922 pages for object "FctInventoryDetailOverShort200609".
DBCC results for 'FctItem200707'.
There are 69452016 rows in 1507439 pages for object "FctItem200707".
DBCC results for 'FctMarketBasket200802'.
There are 0 rows in 0 pages for object "FctMarketBasket200802".
DBCC results for 'FctTrans200704'.
There are 38540518 rows in 597065 pages for object "FctTrans200704".
DBCC results for 'FctInventoryDetailOverShort200608'.
There are 1077109 rows in 22440 pages for object "FctInventoryDetailOverShort200608".
DBCC results for 'FctMarketBasket200803'.
There are 0 rows in 0 pages for object "FctMarketBasket200803".
DBCC results for 'FctTrans200705'.
There are 42379252 rows in 655684 pages for object "FctTrans200705".
DBCC results for 'FctInventoryDetailOverShort200607'.
There are 1027581 rows in 21408 pages for object "FctInventoryDetailOverShort200607".
DBCC results for 'FctMarketBasket200804'.
There are 0 rows in 0 pages for object "FctMarketBasket200804".
DBCC results for 'FctPurchases200612'.
There are 80697 rows in 8112 pages for object "FctPurchases200612".
DBCC results for 'FctTrans'.
There are 0 rows in 1 pages for object "FctTrans".
DBCC results for 'FctTrans200706'.
There are 42427263 rows in 656341 pages for object "FctTrans200706".
DBCC results for 'FctInventoryOverShort200701'.
There are 11805 rows in 1074 pages for object "FctInventoryOverShort200701".
DBCC results for 'FctItem200710'.
There are 64543846 rows in 1400823 pages for object "FctItem200710".
DBCC results for 'FctMarketBasket200805'.
There are 0 rows in 0 pages for object "FctMarketBasket200805".
DBCC results for 'FctInventoryOverShort200702'.
There are 20945 rows in 1911 pages for object "FctInventoryOverShort200702".
DBCC results for 'FctItem200711'.
There are 61572408 rows in 1336204 pages for object "FctItem200711".
DBCC results for 'AggFctInventory200709'.
There are 38674561 rows in 345311 pages for object "AggFctInventory200709".
DBCC results for 'FctMarketBasket200806'.
There are 0 rows in 0 pages for object "FctMarketBasket200806".
DBCC results for 'FctInventoryDetailOverShort200701'.
There are 1137310 rows in 23694 pages for object "FctInventoryDetailOverShort200701".
DBCC results for 'FctItem200712'.
There are 61015139 rows in 1324141 pages for object "FctItem200712".
DBCC results for 'FctPurchases200801'.
There are 61634 rows in 6165 pages for object "FctPurchases200801".
DBCC results for 'FctInventoryDetailOverShort200702'.
There are 870050 rows in 25566 pages for object "FctInventoryDetailOverShort200702".
DBCC results for 'FctMarketBasket200707'.
There are 14738148 rows in 140364 pages for object "FctMarketBasket200707".
DBCC results for 'FctPurchasesDetail200611'.
There are 1525759 rows in 50859 pages for object "FctPurchasesDetail200611".
DBCC results for 'FctInventoryOverShort200612'.
There are 11407 rows in 1037 pages for object "FctInventoryOverShort200612".
DBCC results for 'FctMarketBasket200708'.
There are 14925509 rows in 142148 pages for object "FctMarketBasket200708".
DBCC results for 'DimTender'.
There are 252 rows in 4 pages for object "DimTender".
DBCC results for 'FctInventoryOverShort200611'.
There are 20815 rows in 1893 pages for object "FctInventoryOverShort200611".
DBCC results for 'FctMarketBasket200709'.
There are 12731912 rows in 121257 pages for object "FctMarketBasket200709".
DBCC results for 'FctPurchases200802'.
There are 0 rows in 0 pages for object "FctPurchases200802".
DBCC results for 'FctTrans200603'.
There are 36881167 rows in 595900 pages for object "FctTrans200603".
DBCC results for 'FctInventoryOverShort200610'.
There are 23278 rows in 2117 pages for object "FctInventoryOverShort200610".
DBCC results for 'FctMarketBasket200710'.
There are 13466682 rows in 128255 pages for object "FctMarketBasket200710".
DBCC results for 'DimVendor'.
There are 8345 rows in 150 pages for object "DimVendor".
DBCC results for 'FctItem200509'.
There are 55103852 rows in 1196780 pages for object "FctItem200509".
DBCC results for 'DimTime'.
There are 210336 rows in 14506 pages for object "DimTime".
DBCC results for 'FctInventoryOverShort200609'.
There are 21303 rows in 1937 pages for object "FctInventoryOverShort200609".
DBCC results for 'FctMarketBasket200711'.
There are 12639259 rows in 120374 pages for object "FctMarketBasket200711".
DBCC results for 'FctTrans200504'.
There are 6346491 rows in 83507 pages for object "FctTrans200504".
DBCC results for 'FctPurchasesDetail200610'.
There are 1534022 rows in 51135 pages for object "FctPurchasesDetail200610".
DBCC results for 'FctInventoryOverShort200608'.
There are 22840 rows in 2077 pages for object "FctInventoryOverShort200608".
DBCC results for 'FctMarketBasket200712'.
There are 12467649 rows in 118740 pages for object "FctMarketBasket200712".
DBCC results for 'FctPurchases200803'.
There are 0 rows in 0 pages for object "FctPurchases200803".
DBCC results for 'FctTrans200502'.
There are 5601498 rows in 75783 pages for object "FctTrans200502".
DBCC results for 'FctInventoryOverShort200607'.
There are 23055 rows in 2096 pages for object "FctInventoryOverShort200607".
DBCC results for 'FctPurchases200707'.
There are 86938 rows in 8695 pages for object "FctPurchases200707".
DBCC results for 'FctItem200504'.
There are 6344255 rows in 115351 pages for object "FctItem200504".
DBCC results for 'FctInventoryOverShort'.
There are 0 rows in 1 pages for object "FctInventoryOverShort".
DBCC results for 'AggFctInventory200710'.
There are 40548491 rows in 362042 pages for object "AggFctInventory200710".
DBCC results for 'FctItem200502'.
There are 5846295 rows in 109676 pages for object "FctItem200502".
DBCC results for 'FctInventoryDetailOverShort200703'.
There are 1080358 rows in 22508 pages for object "FctInventoryDetailOverShort200703".
DBCC results for 'FctPurchases200804'.
There are 0 rows in 0 pages for object "FctPurchases200804".
DBCC results for 'FctItem200402'.
There are 2363053 rows in 42965 pages for object "FctItem200402".
DBCC results for 'FctTenderBridge200610'.
There are 24029388 rows in 62419 pages for object "FctTenderBridge200610".
DBCC results for 'DimTransAccount'.
There are 23 rows in 1 pages for object "DimTransAccount".
DBCC results for 'FctPurchases200708'.
There are 89984 rows in 8999 pages for object "FctPurchases200708".
DBCC results for 'FctTrans200402'.
There are 2363213 rows in 31095 pages for object "FctTrans200402".
DBCC results for 'FctItem200403'.
There are 2654122 rows in 48257 pages for object "FctItem200403".
DBCC results for 'FctTender200610'.
There are 36279859 rows in 594752 pages for object "FctTender200610".
DBCC results for 'FctItem200603'.
There are 58617729 rows in 1272670 pages for object "FctItem200603".
DBCC results for 'FctInventoryDetailOverShort'.
There are 0 rows in 1 pages for object "FctInventoryDetailOverShort".
DBCC results for 'FctPurchases200805'.
There are 0 rows in 0 pages for object "FctPurchases200805".
DBCC results for 'FctItem200404'.
There are 2674211 rows in 48623 pages for object "FctItem200404".
DBCC results for 'FctPurchases200709'.
There are 81611 rows in 8162 pages for object "FctPurchases200709".
DBCC results for 'FctTrans200403'.
There are 2655446 rows in 34941 pages for object "FctTrans200403".
DBCC results for 'FctTender200611'.
There are 35005924 rows in 573868 pages for object "FctTender200611".
DBCC results for 'FctPurchasesDetail200609'.
There are 1425542 rows in 47519 pages for object "FctPurchasesDetail200609".
DBCC results for 'FctTrans200404'.
There are 2674418 rows in 35190 pages for object "FctTrans200404".
DBCC results for 'FctPurchases200806'.
There are 0 rows in 0 pages for object "FctPurchases200806".
DBCC results for 'FctTrans200401'.
There are 2403683 rows in 31628 pages for object "FctTrans200401".
DBCC results for 'vw_FctTransFctTender200612'.
There are 22794210 rows in 411662 pages for object "vw_FctTransFctTender200612".
DBCC results for 'FctTender200612'.
There are 38084959 rows in 624345 pages for object "FctTender200612".
DBCC results for 'FctTrans200604'.
There are 35887758 rows in 579843 pages for object "FctTrans200604".
DBCC results for 'FctPurchases200710'.
There are 91429 rows in 9144 pages for object "FctPurchases200710".
DBCC results for 'FctItem200401'.
There are 2403524 rows in 43701 pages for object "FctItem200401".
DBCC results for 'vw_FctItemFctTender200611'.
Msg 8908, Level 16, State 1, Server KNXPNAETLSQL2005, Line 1
Indexed view 'vw_FctItemFctTender200611' (object ID 351340316) does not contain all rows that the view definition produces. Refer to Books Online for more information on this error. This does not necessarily represent an integrity issue with the data in this database.
There are 56265296 rows in 1003654 pages for object "vw_FctItemFctTender200611".
CHECKDB found 0 allocation errors and 1 consistency errors in table 'vw_FctItemFctTender200611' (object ID 351340316).
DBCC results for 'FctItem200604'.
There are 57288301 rows in 1242370 pages for object "FctItem200604".
DBCC results for 'FctPurchases200609'.
There are 74084 rows in 7409 pages for object "FctPurchases200609".
DBCC results for 'FctItem200501'.
There are 4852798 rows in 88233 pages for object "FctItem200501".
DBCC results for 'vw_FctTransFctTender200611'.
There are 23074679 rows in 378454 pages for object "vw_FctTransFctTender200611".
DBCC results for 'FctPurchasesDetail200801'.
There are 1125683 rows in 37525 pages for object "FctPurchasesDetail200801".
DBCC results for 'FctTenderBridge200605'.
There are 23287797 rows in 60489 pages for object "FctTenderBridge200605".
DBCC results for 'FctTrans200501'.
There are 4854053 rows in 63870 pages for object "FctTrans200501".
DBCC results for 'vw_TicketInternalKey200611'.
There are 22624684 rows in 70046 pages for object "vw_TicketInternalKey200611".
DBCC results for 'FctPurchases200711'.
There are 87626 rows in 8764 pages for object "FctPurchases200711".
DBCC results for 'FctTenderBridge200604'.
There are 23005866 rows in 59759 pages for object "FctTenderBridge200604".
DBCC results for 'FctTrans200505'.
There are 7073426 rows in 93072 pages for object "FctTrans200505".
DBCC results for 'FctPurchasesDetail200608'.
There are 1642560 rows in 54752 pages for object "FctPurchasesDetail200608".
DBCC results for 'FctTrans200506'.
There are 7642026 rows in 100553 pages for object "FctTrans200506".
DBCC results for 'AggFctInventory200705'.
There are 38969703 rows in 347945 pages for object "AggFctInventory200705".
DBCC results for 'FctPurchasesDetail200802'.
There are 0 rows in 0 pages for object "FctPurchasesDetail200802".
DBCC results for 'FctTenderBridge200603'.
There are 23767139 rows in 61737 pages for object "FctTenderBridge200603".
DBCC results for 'FctTrans200609'.
There are 37186561 rows in 575669 pages for object "FctTrans200609".
DBCC results for 'DimCashier'.
There are 60954 rows in 791 pages for object "DimCashier".
DBCC results for 'FctPurchases200712'.
There are 84886 rows in 8491 pages for object "FctPurchases200712".
DBCC results for 'FctTenderBridge200602'.
There are 19940534 rows in 51796 pages for object "FctTenderBridge200602".
DBCC results for 'FctMarketBasket200609'.
There are 12290937 rows in 117057 pages for object "FctMarketBasket200609".
DBCC results for 'FctPurchases'.
There are 0 rows in 1 pages for object "FctPurchases".
DBCC results for 'FctTenderBridge200601'.
There are 21564340 rows in 56014 pages for object "FctTenderBridge200601".
DBCC results for 'FctTrans200507'.
There are 8155261 rows in 107307 pages for object "FctTrans200507".
DBCC results for 'FctItem200709'.
There are 61442354 rows in 1333533 pages for object "FctItem200709".
DBCC results for 'FctPurchases200608'.
There are 79135 rows in 7914 pages for object "FctPurchases200608".
DBCC results for 'FctItem200609'.
There are 58642975 rows in 1273085 pages for object "FctItem200609".
DBCC results for 'FctPurchasesDetail200803'.
There are 0 rows in 0 pages for object "FctPurchasesDetail200803".
DBCC results for 'FctTender200601'.
There are 32455905 rows in 532067 pages for object "FctTender200601".
DBCC results for 'FctItem200708'.
There are 69522046 rows in 1508890 pages for object "FctItem200708".
DBCC results for 'DimOrg'.
There are 779 rows in 262 pages for object "DimOrg".
DBCC results for 'FctPurchasesDetail200707'.
There are 1751890 rows in 58397 pages for object "FctPurchasesDetail200707".
DBCC results for 'AggFctInventory200712'.
There are 41688785 rows in 372223 pages for object "AggFctInventory200712".
DBCC results for 'FctItem200408'.
There are 3454006 rows in 62801 pages for object "FctItem200408".
DBCC results for 'FctTender200602'.
There are 30080750 rows in 493131 pages for object "FctTender200602".
DBCC results for 'FctPurchases200607'.
There are 73974 rows in 7398 pages for object "FctPurchases200607".
DBCC results for 'FctTrans200408'.
There are 3454482 rows in 45454 pages for object "FctTrans200408".
DBCC results for 'FctPurchasesDetail200804'.
There are 0 rows in 0 pages for object "FctPurchasesDetail200804".
DBCC results for 'FctTrans200405'.
There are 2780741 rows in 36589 pages for object "FctTrans200405".
DBCC results for 'FctPurchasesDetail200708'.
There are 1823875 rows in 60796 pages for object "FctPurchasesDetail200708".
DBCC results for 'FctTrans200406'.
There are 2935300 rows in 38623 pages for object "FctTrans200406".
DBCC results for 'DimItemAccount'.
There are 10 rows in 1 pages for object "DimItemAccount".
DBCC results for 'FctTender200603'.
There are 35718186 rows in 585547 pages for object "FctTender200603".
DBCC results for 'FctTrans200407'.
There are 3288438 rows in 43269 pages for object "FctTrans200407".
DBCC results for 'FctPurchasesDetail200607'.
There are 1512599 rows in 50420 pages for object "FctPurchasesDetail200607".
DBCC results for 'FctPurchasesDetail'.
There are 0 rows in 1 pages for object "FctPurchasesDetail".
DBCC results for 'FctPurchasesDetail200805'.
There are 0 rows in 0 pages for object "FctPurchasesDetail200805".
DBCC results for 'FctPurchasesDetail200709'.
There are 1586798 rows in 52894 pages for object "FctPurchasesDetail200709".
DBCC results for 'FctTender200604'.
There are 34580883 rows in 566903 pages for object "FctTender200604".
DBCC results for 'FctItem200405'.
There are 2780503 rows in 50555 pages for object "FctItem200405".
DBCC results for 'FctItem200406'.
There are 2934977 rows in 53364 pages for object "FctItem200406".
DBCC results for 'DimPriceBook'.
There are 118229 rows in 5396 pages for object "DimPriceBook".
DBCC results for 'FctPurchasesDetail200806'.
There are 0 rows in 0 pages for object "FctPurchasesDetail200806".
DBCC results for 'FctTender200605'.
There are 34938958 rows in 572773 pages for object "FctTender200605".
DBCC results for 'FctItem200407'.
There are 3288013 rows in 59783 pages for object "FctItem200407".
DBCC results for 'FctPurchasesDetail200710'.
There are 1754756 rows in 58492 pages for object "FctPurchasesDetail200710".
DBCC results for 'DimCashierScoreCardMetric_200817'.
There are 49 rows in 16 pages for object "DimCashierScoreCardMetric_200817".
DBCC results for 'FctTender200606'.
There are 37162123 rows in 609219 pages for object "FctTender200606".
DBCC results for 'FctTender200801'.
There are 25344386 rows in 415482 pages for object "FctTender200801".
DBCC results for 'FctItem200507'.
There are 8152151 rows in 148221 pages for object "FctItem200507".
DBCC results for 'vw_TicketInternalKey200610'.
There are 23299468 rows in 72135 pages for object "vw_TicketInternalKey200610".
DBCC results for 'FctInventory200607'.
There are 33332867 rows in 424060 pages for object "FctInventory200607".
DBCC results for 'Staging_FOCUSITEMS'.
There are 105818 rows in 3320 pages for object "Staging_FOCUSITEMS".
DBCC results for 'FctPurchasesDetail200711'.
There are 1657167 rows in 55240 pages for object "FctPurchasesDetail200711".
DBCC results for 'DimCashierScoreCardMetric'.
There are 49 rows in 16 pages for object "DimCashierScoreCardMetric".
DBCC results for 'FctItem200506'.
There are 7639495 rows in 138900 pages for object "FctItem200506".
DBCC results for 'FctItem200508'.
There are 8068694 rows in 146704 pages for object "FctItem200508".
DBCC results for 'FctTender200802'.
There are 0 rows in 0 pages for object "FctTender200802".
DBCC results for 'FctItem200505'.
There are 7070917 rows in 128563 pages for object "FctItem200505".
DBCC results for 'FctInventory200608'.
There are 33548346 rows in 459782 pages for object "FctInventory200608".
DBCC results for 'FctTrans200508'.
There are 8072020 rows in 106211 pages for object "FctTrans200508".
DBCC results for 'FctItem200409'.
There are 3518045 rows in 63965 pages for object "FctItem200409".
DBCC results for 'FctInventory200609'.
There are 33154325 rows in 423373 pages for object "FctInventory200609".
DBCC results for 'FctPurchasesDetail200712'.
There are 1601447 rows in 53383 pages for object "FctPurchasesDetail200712".
DBCC results for 'FctTender200803'.
There are 0 rows in 0 pages for object "FctTender200803".
DBCC results for 'FctItem200410'.
There are 4030031 rows in 73274 pages for object "FctItem200410".
DBCC results for 'AggFctInventory200706'.
There are 38251840 rows in 341536 pages for object "AggFctInventory200706".
DBCC results for 'FctItem200411'.
There are 4246191 rows in 77204 pages for object "FctItem200411".
DBCC results for 'FctTender200804'.
There are 0 rows in 0 pages for object "FctTender200804".
DBCC results for 'FctItem200412'.
There are 4669485 rows in 84900 pages for object "FctItem200412".
DBCC results for 'FctTender200707'.
There are 38975324 rows in 638940 pages for object "FctTender200707".
DBCC results for 'DimScenario'.
There are 2 rows in 1 pages for object "DimScenario".
DBCC results for 'FctTender200805'.
There are 0 rows in 0 pages for object "FctTender200805".
DBCC results for 'FctTender200708'.
There are 38188637 rows in 626044 pages for object "FctTender200708".
DBCC results for 'AggFctCashierScorecard200801_old'.
There are 732565 rows in 6106 pages for object "AggFctCashierScorecard200801_old".
DBCC results for 'FctTender200512'.
There are 34223755 rows in 561048 pages for object "FctTender200512".
DBCC results for 'FctTrans200409'.
There are 3518579 rows in 46298 pages for object "FctTrans200409".
DBCC results for 'FctTender200806'.
There are 0 rows in 0 pages for object "FctTender200806".
DBCC results for 'FctTrans200410'.
There are 4030716 rows in 53036 pages for object "FctTrans200410".
DBCC results for 'AggFctInventory200708'.
There are 39462282 rows in 352344 pages for object "AggFctInventory200708".
DBCC results for 'FctPurchases200606'.
There are 73648 rows in 7365 pages for object "FctPurchases200606".
DBCC results for 'FctTender200709'.
There are 36556657 rows in 599290 pages for object "FctTender200709".
DBCC results for 'FctTender200511'.
There are 33620449 rows in 551158 pages for object "FctTender200511".
DBCC results for 'FctTrans200411'.
There are 4247042 rows in 55883 pages for object "FctTrans200411".
DBCC results for 'FctInventory'.
There are 0 rows in 1 pages for object "FctInventory".
DBCC results for 'FctTenderBridge200801'.
There are 17369173 rows in 45116 pages for object "FctTenderBridge200801".
DBCC results for 'FctTender200710'.
There are 38549430 rows in 631958 pages for object "FctTender200710".
DBCC results for 'FctTenderBridge200802'.
There are 0 rows in 0 pages for object "FctTenderBridge200802".
DBCC results for 'FctTender200510'.
There are 34910026 rows in 572297 pages for object "FctTender200510".
DBCC results for 'FctTrans200412'.
There are 4670468 rows in 61454 pages for object "FctTrans200412".
DBCC results for 'FctPurchases200605'.
There are 75207 rows in 7521 pages for object "FctPurchases200605".
DBCC results for 'vw_DimCashier'.
There are 60954 rows in 3854 pages for object "vw_DimCashier".
DBCC results for 'FctTenderBridge200803'.
There are 0 rows in 0 pages for object "FctTenderBridge200803".
DBCC results for 'AggFctInventory200702'.
There are 32915438 rows in 293889 pages for object "AggFctInventory200702".
DBCC results for 'FctTender200711'.
There are 37127176 rows in 608643 pages for object "FctTender200711".
DBCC results for 'FctTenderBridge200804'.
There are 0 rows in 0 pages for object "FctTenderBridge200804".
DBCC results for 'FctTender200509'.
There are 34091198 rows in 558875 pages for object "FctTender200509".
DBCC results for 'grand_general_upcs'.
There are 2956 rows in 56 pages for object "grand_general_upcs".
DBCC results for 'DimPromo'.
There are 5608 rows in 110 pages for object "DimPromo".
DBCC results for 'FctTenderBridge200805'.
There are 0 rows in 0 pages for object "FctTenderBridge200805".
DBCC results for 'FctPurchasesDetail200606'.
There are 1540935 rows in 51365 pages for object "FctPurchasesDetail200606".
DBCC results for 'FctInventory200701'.
There are 35703489 rows in 476319 pages for object "FctInventory200701".
DBCC results for 'FctTender200712'.
There are 36607032 rows in 600116 pages for object "FctTender200712".
DBCC results for 'FctTenderBridge200806'.
There are 0 rows in 0 pages for object "FctTenderBridge200806".
DBCC results for 'FctTenderBridge200512'.
There are 22697922 rows in 58960 pages for object "FctTenderBridge200512".
DBCC results for 'fcttrans200801_ORGINAL'.
There are 15742397 rows in 243502 pages for object "fcttrans200801_ORGINAL".
DBCC results for 'FctTenderBridge200511'.
There are 22234576 rows in 57753 pages for object "FctTenderBridge200511".
DBCC results for 'DimBusinessDate'.
There are 2191 rows in 29 pages for object "DimBusinessDate".
DBCC results for 'FctInventory200702'.
There are 32931632 rows in 434210 pages for object "FctInventory200702".
DBCC results for 'FctTenderBridge200707'.
There are 26199605 rows in 68051 pages for object "FctTenderBridge200707".
DBCC results for 'FctTrans200802'.
There are 0 rows in 0 pages for object "FctTrans200802".
DBCC results for 'FctTenderBridge200510'.
There are 23028341 rows in 59816 pages for object "FctTenderBridge200510".
DBCC results for 'FctPurchasesDetail200605'.
There are 1498862 rows in 49963 pages for object "FctPurchasesDetail200605".
DBCC results for 'FctTenderBridge200708'.
There are 25724739 rows in 66819 pages for object "FctTenderBridge200708".
DBCC results for 'FctTrans200803'.
There are 0 rows in 0 pages for object "FctTrans200803".
DBCC results for 'FctTenderBridge200509'.
There are 22528117 rows in 58519 pages for object "FctTenderBridge200509".
DBCC results for 'FctInventory200703'.
There are 38252048 rows in 503846 pages for object "FctInventory200703".
DBCC results for 'FctTenderBridge200709'.
There are 24633845 rows in 63985 pages for object "FctTenderBridge200709".
DBCC results for 'FctTrans200804'.
There are 0 rows in 0 pages for object "FctTrans200804".
DBCC results for 'vw_FctItemFctTender200612'.
There are 55519368 rows in 1038161 pages for object "vw_FctItemFctTender200612".
DBCC results for 'FctMarketBasket200608'.
There are 13460138 rows in 128192 pages for object "FctMarketBasket200608".
DBCC results for 'FctTenderBridge200710'.
There are 26089474 rows in 67768 pages for object "FctTenderBridge200710".
DBCC results for 'FctTrans200805'.
There are 0 rows in 0 pages for object "FctTrans200805".
DBCC results for 'vw_FctItemFctTender200609'.
There are 56443335 rows in 1007583 pages for object "vw_FctItemFctTender200609".
DBCC results for 'FctPurchasesDetail200604'.
There are 1344523 rows in 44818 pages for object "FctPurchasesDetail200604".
DBCC results for 'FctTender'.
There are 0 rows in 3 pages for object "FctTender".
DBCC results for 'FctItem200701'.
There are 56257582 rows in 1221460 pages for object "FctItem200701".
DBCC results for 'FctMarketBasket200607'.
There are 13176166 rows in 125488 pages for object "FctMarketBasket200607".
DBCC results for 'FctTenderBridge200711'.
There are 25288645 rows in 65686 pages for object "FctTenderBridge200711".
DBCC results for 'FctTrans200806'.
There are 0 rows in 0 pages for object "FctTrans200806".
DBCC results for 'vw_FctItemFctTender200608'.
Indexed view check failed for indexed view 'vw_FctItemFctTender200608' (object ID 1037246750) due to internal query error 5242, severity 16, state 1. Refer to Books Online for more information on this error. This does not necessarily represent an integrity issue with the data in this database. However, this view will not be processed further.
There are 62321634 rows in 1112544 pages for object "vw_FctItemFctTender200608".
DBCC results for 'FctItem200702'.
There are 54195455 rows in 1188990 pages for object "FctItem200702".
DBCC results for 'FctMarketBasket200606'.
There are 12736966 rows in 121309 pages for object "FctMarketBasket200606".
DBCC results for 'FctTenderBridge200712'.
There are 24916963 rows in 64721 pages for object "FctTenderBridge200712".
DBCC results for 'vw_FctItemFctTender200607'.
There are 63641670 rows in 1097729 pages for object "vw_FctItemFctTender200607".
DBCC results for 'FctItem200703'.
There are 62038035 rows in 1346826 pages for object "FctItem200703".
DBCC results for 'FctMarketBasket200605'.
There are 12201466 rows in 116209 pages for object "FctMarketBasket200605".
DBCC results for 'FctTrans200707'.
There are 43190400 rows in 668168 pages for object "FctTrans200707".
DBCC results for 'vw_FctItemFctTender200606'.
Indexed view check failed for indexed view 'vw_FctItemFctTender200606' (object ID 1069246864) due to internal query error 5242, severity 16, state 1. Refer to Books Online for more information on this error. This does not necessarily represent an integrity issue with the data in this database. However, this view will not be processed further.
There are 60310390 rows in 1040058 pages for object "vw_FctItemFctTender200606".
DBCC results for 'FctPurchases200604'.
There are 67935 rows in 6794 pages for object "FctPurchases200604".
DBCC results for 'FctMarketBasket200604'.
There are 11140002 rows in 106099 pages for object "FctMarketBasket200604".
DBCC results for 'FctTrans200708'.
There are 43396612 rows in 671294 pages for object "FctTrans200708".
DBCC results for 'vw_FctItemFctTender200605'.
Msg 8908, Level 16, State 1, Server KNXPNAETLSQL2005, Line 1
Indexed view 'vw_FctItemFctTender200605' (object ID 1085246921) does not contain all rows that the view definition produces. Refer to Books Online for more information on this error. This does not necessarily represent an integrity issue with the data in this database.
There are 55705251 rows in 960564 pages for object "vw_FctItemFctTender200605".
CHECKDB found 0 allocation errors and 1 consistency errors in table 'vw_FctItemFctTender200605' (object ID 1085246921).
DBCC results for 'FCTInventoryWaste200509'.
There are 0 rows in 0 pages for object "FCTInventoryWaste200509".
DBCC results for 'FctMarketBasket200603'.
There are 11861292 rows in 112968 pages for object "FctMarketBasket200603".
DBCC results for 'FctTrans200709'.
There are 33951188 rows in 524909 pages for object "FctTrans200709".
DBCC results for 'vw_FctItemFctTender200604'.
Msg 8907, Level 16, State 1, Server KNXPNAETLSQL2005, Line 1
Indexed view 'vw_FctItemFctTender200604' (object ID 1101246978) contains rows not produced by the view definition. Refer to Books Online for more information on this error. This does not necessarily represent an integrity issue with the data in this database.
There are 55331833 rows in 959978 pages for object "vw_FctItemFctTender200604".
CHECKDB found 0 allocation errors and 1 consistency errors in table 'vw_FctItemFctTender200604' (object ID 1101246978).
DBCC results for 'FCTInventoryWaste200510'.
There are 0 rows in 0 pages for object "FCTInventoryWaste200510".
DBCC results for 'DimPriceBookPromo'.
There are 118230 rows in 1104 pages for object "DimPriceBookPromo".
DBCC results for 'FctMarketBasket200602'.
There are 9858833 rows in 93897 pages for object "FctMarketBasket200602".
DBCC results for 'FctTrans200710'.
There are 33485504 rows in 517574 pages for object "FctTrans200710".
DBCC results for 'vw_FctItemFctTender200603'.
Msg 8908, Level 16, State 1, Server KNXPNAETLSQL2005, Line 1
Indexed view 'vw_FctItemFctTender200603' (object ID 1117247035) does not contain all rows that the view definition produces. Refer to Books Online for more information on this error. This does not necessarily represent an integrity issue with the data in this database.
There are 56649889 rows in 976726 pages for object "vw_FctItemFctTender200603".
CHECKDB found 0 allocation errors and 1 consistency errors in table 'vw_FctItemFctTender200603' (object ID 1117247035).
DBCC results for 'FCTInventoryWaste200511'.
There are 0 rows in 0 pages for object "FCTInventoryWaste200511".
DBCC results for 'vw_DimItemAccount'.
There are 10 rows in 1 pages for object "vw_DimItemAccount".
DBCC results for 'FctPurchases200603'.
There are 73862 rows in 7387 pages for object "FctPurchases200603".
DBCC results for 'FctPurchases200701'.
There are 81741 rows in 8175 pages for object "FctPurchases200701".
DBCC results for 'FctMarketBasket200601'.
There are 10775055 rows in 102623 pages for object "FctMarketBasket200601".
DBCC results for 'FctTrans200711'.
There are 32895965 rows in 508494 pages for object "FctTrans200711".
DBCC results for 'vw_FctItemFctTender200602'.
There are 47477589 rows in 818580 pages for object "vw_FctItemFctTender200602".
DBCC results for 'FCTInventoryWaste200512'.
There are 0 rows in 0 pages for object "FCTInventoryWaste200512".
DBCC results for 'FctInventoryOverShort200704'.
There are 22221 rows in 2332 pages for object "FctInventoryOverShort200704".
DBCC results for 'FctTrans200712'.
There are 32819820 rows in 507497 pages for object "FctTrans200712".
DBCC results for 'vw_FctItemFctTender200601'.
Msg 8907, Level 16, State 1, Server KNXPNAETLSQL2005, Line 1
Indexed view 'vw_FctItemFctTender200601' (object ID 1149247149) contains rows not produced by the view definition. Refer to Books Online for more information on this error. This does not necessarily represent an integrity issue with the data in this database.
Msg 8908, Level 16, State 1, Server KNXPNAETLSQL2005, Line 1
Indexed view 'vw_FctItemFctTender200601' (object ID 1149247149) does not contain all rows that the view definition produces. Refer to Books Online for more information on this error. This does not necessarily represent an integrity issue with the data in this database.
There are 50796714 rows in 875806 pages for object "vw_FctItemFctTender200601".
CHECKDB found 0 allocation errors and 2 consistency errors in table 'vw_FctItemFctTender200601' (object ID 1149247149).
DBCC results for 'FCTInventoryWaste200601'.
There are 13947 rows in 1163 pages for object "FCTInventoryWaste200601".
DBCC results for 'FctInventoryOverShort200705'.
There are 25592 rows in 2432 pages for object "FctInventoryOverShort200705".
DBCC results for 'vw_FctItemFctTender200512'.
Msg 8908, Level 16, State 1, Server KNXPNAETLSQL2005, Line 1
Indexed view 'vw_FctItemFctTender200512' (object ID 1165247206) does not contain all rows that the view definition produces. Refer to Books Online for more information on this error. This does not necessarily represent an integrity issue with the data in this database.
There are 54301932 rows in 936241 pages for object "vw_FctItemFctTender200512".
CHECKDB found 0 allocation errors and 1 consistency errors in table 'vw_FctItemFctTender200512' (object ID 1165247206).
DBCC results for 'FCTInventoryWaste200602'.
There are 12009 rows in 1001 pages for object "FCTInventoryWaste200602".
DBCC results for 'vw_DimScenario'.
There are 2 rows in 1 pages for object "vw_DimScenario".
DBCC results for 'FctPurchasesDetail200603'.
There are 1475591 rows in 49187 pages for object "FctPurchasesDetail200603".
DBCC results for 'FctInventoryOverShort200706'.
There are 27514 rows in 2620 pages for object "FctInventoryOverShort200706".
DBCC results for 'FctPurchases200702'.
There are 76123 rows in 7613 pages for object "FctPurchases200702".
DBCC results for 'vw_FctItemFctTender200511'.
Indexed view check failed for indexed view 'vw_FctItemFctTender200511' (object ID 1181247263) due to internal query error 5242, severity 16, state 1. Refer to Books Online for more information on this error. This does not necessarily represent an integrity issue with the data in this database. However, this view will not be processed further.
There are 52659454 rows in 907922 pages for object "vw_FctItemFctTender200511".
DBCC results for 'FCTInventoryWaste200603'.
There are 13039 rows in 1087 pages for object "FCTInventoryWaste200603".
DBCC results for 'vw_DimTransAccount'.
There are 23 rows in 1 pages for object "vw_DimTransAccount".
DBCC results for 'vw_FctItemFctTender200510'.
There are 54368234 rows in 937384 pages for object "vw_FctItemFctTender200510".
DBCC results for 'FCTInventoryWaste200604'.
There are 11613 rows in 968 pages for object "FCTInventoryWaste200604".
DBCC results for 'AggFctInventory200609'.
There are 30397051 rows in 241247 pages for object "AggFctInventory200609".
DBCC results for 'FCTInventoryWaste200605'.
There are 12187 rows in 1016 pages for object "FCTInventoryWaste200605".
DBCC results for 'AggFctInventory200704'.
There are 37649918 rows in 336162 pages for object "AggFctInventory200704".
DBCC results for 'FctPurchasesDetail200602'.
There are 1254092 rows in 41804 pages for object "FctPurchasesDetail200602".
DBCC results for 'FctPurchases200703'.
There are 85893 rows in 8590 pages for object "FctPurchases200703".
DBCC results for 'FCTInventoryWaste200606'.
There are 11818 rows in 985 pages for object "FCTInventoryWaste200606".
DBCC results for 'FctTenderBridge'.
There are 0 rows in 1 pages for object "FctTenderBridge".
DBCC results for 'FCTInventoryWaste200607'.
There are 12518 rows in 1044 pages for object "FCTInventoryWaste200607".
DBCC results for 'FctItem200601'.
There are 52533515 rows in 1140810 pages for object "FctItem200601".
DBCC results for 'FctBudget'.
There are 17450650 rows in 248677 pages for object "FctBudget".
DBCC results for 'FCTInventoryWaste200608'.
There are 13150 rows in 1096 pages for object "FCTInventoryWaste200608".
DBCC results for 'FctPurchases200602'.
There are 64427 rows in 6443 pages for object "FctPurchases200602".
DBCC results for 'FctPurchasesDetail200701'.
There are 1534839 rows in 51162 pages for object "FctPurchasesDetail200701".
DBCC results for 'FctItem200606'.
There are 62724410 rows in 1391801 pages for object "FctItem200606".
DBCC results for 'vw_FctItem200612'.
There are 52130481 rows in 1133272 pages for object "vw_FctItem200612".
DBCC results for 'FCTInventoryWaste200609'.
There are 12481 rows in 1041 pages for object "FCTInventoryWaste200609".
DBCC results for 'AggFctInventory200610'.
There are 34001457 rows in 269853 pages for object "AggFctInventory200610".
DBCC results for 'FctTrans200606'.
There are 38400926 rows in 640654 pages for object "FctTrans200606".
DBCC results for 'FCTInventoryWaste200610'.
There are 13520 rows in 1127 pages for object "FCTInventoryWaste200610".
DBCC results for 'vw_FctItemFctTender200610'.
Indexed view check failed for indexed view 'vw_FctItemFctTender200610' (object ID 1305771709) due to internal query error 5242, severity 16, state 1. Refer to Books Online for more information on this error. This does not necessarily represent an integrity issue with the data in this database. However, this view will not be processed further.
There are 57939653 rows in 1033756 pages for object "vw_FctItemFctTender200610".
DBCC results for 'AggFctInventory200612'.
There are 35384669 rows in 280831 pages for object "AggFctInventory200612".
DBCC results for 'FCTInventoryWaste200611'.
There are 13381 rows in 1116 pages for object "FCTInventoryWaste200611".
DBCC results for 'FctPurchasesDetail200601'.
There are 1338455 rows in 44616 pages for object "FctPurchasesDetail200601".
DBCC results for 'vw_DimPriceBookPromo'.
There are 118229 rows in 1895 pages for object "vw_DimPriceBookPromo".
DBCC results for 'FctPurchasesDetail200702'.
There are 1488946 rows in 49632 pages for object "FctPurchasesDetail200702".
DBCC results for 'vw_TicketInternalKey200612'.
There are 22346428 rows in 69265 pages for object "vw_TicketInternalKey200612".
DBCC results for 'vw_FctBudget'.
There are 7888015 rows in 144737 pages for object "vw_FctBudget".
DBCC results for 'FCTInventoryWaste200612'.
There are 15684 rows in 1307 pages for object "FCTInventoryWaste200612".
DBCC results for 'vw_TicketInternalKey200609'.
There are 22601520 rows in 69974 pages for object "vw_TicketInternalKey200609".
DBCC results for 'FCTInventoryWaste200701'.
There are 17266 rows in 1439 pages for object "FCTInventoryWaste200701".
DBCC results for 'vw_TicketInternalKey200608'.
There are 24686521 rows in 76429 pages for object "vw_TicketInternalKey200608".
DBCC results for 'FCTInventoryWaste200702'.
There are 14803 rows in 1234 pages for object "FCTInventoryWaste200702".
DBCC results for 'FctPurchasesDetail200512'.
There are 1434370 rows in 47813 pages for object "FctPurchasesDetail200512".
DBCC results for 'FctPurchasesDetail200703'.
There are 1650558 rows in 55020 pages for object "FctPurchasesDetail200703".
DBCC results for 'vw_TicketInternalKey200607'.
Msg 8907, Level 16, State 1, Server KNXPNAETLSQL2005, Line 1
Indexed view 'vw_TicketInternalKey200607' (object ID 1369771937) contains rows not produced by the view definition. Refer to Books Online for more information on this error. This does not necessarily represent an integrity issue with the data in this database.
There are 24698391 rows in 76466 pages for object "vw_TicketInternalKey200607".
CHECKDB found 0 allocation errors and 1 consistency errors in table 'vw_TicketInternalKey200607' (object ID 1369771937).
DBCC results for 'FCTInventoryWaste200703'.
There are 16608 rows in 1384 pages for object "FCTInventoryWaste200703".
DBCC results for 'vw_TicketInternalKey200606'.
There are 23769033 rows in 73589 pages for object "vw_TicketInternalKey200606".
DBCC results for 'Staging_FOCUSITEMS_ByVendor'.
There are 21777 rows in 921 pages for object "Staging_FOCUSITEMS_ByVendor".
DBCC results for 'AggFctInventory200802'.
There are 0 rows in 0 pages for object "AggFctInventory200802".
DBCC results for 'AggFctInventory200607'.
There are 33035231 rows in 262184 pages for object "AggFctInventory200607".
DBCC results for 'FCTInventoryWaste200704'.
There are 16125 rows in 1344 pages for object "FCTInventoryWaste200704".
DBCC results for 'vw_TicketInternalKey200605'.
There are 22425315 rows in 69429 pages for object "vw_TicketInternalKey200605".
DBCC results for 'AggFctInventory200803'.
There are 0 rows in 0 pages for object "AggFctInventory200803".
DBCC results for 'FCTInventoryWaste200705'.
There are 16463 rows in 1372 pages for object "FCTInventoryWaste200705".
DBCC results for 'FctPurchases200512'.
There are 73225 rows in 7323 pages for object "FctPurchases200512".
DBCC results for 'FctMarketBasket200701'.
There are 12107517 rows in 115310 pages for object "FctMarketBasket200701".
DBCC results for 'vw_TicketInternalKey200604'.
There are 22166578 rows in 68937 pages for object "vw_TicketInternalKey200604".
DBCC results for 'AggFctInventory200804'.
There are 0 rows in 0 pages for object "AggFctInventory200804".
DBCC results for 'AggFctInventory200608'.
There are 33151524 rows in 263107 pages for object "AggFctInventory200608".
DBCC results for 'FCTInventoryWaste200706'.
There are 16117 rows in 1344 pages for object "FCTInventoryWaste200706".
DBCC results for 'FctMarketBasket200702'.
There are 11214976 rows in 106810 pages for object "FctMarketBasket200702".
DBCC results for 'vw_TicketInternalKey200603'.
There are 22886943 rows in 70858 pages for object "vw_TicketInternalKey200603".
DBCC results for 'AggFctInventory200805'.
There are 0 rows in 0 pages for object "AggFctInventory200805".
DBCC results for 'FctInventoryWasteDetail200509'.
There are 0 rows in 0 pages for object "FctInventoryWasteDetail200509".
DBCC results for 'FctMarketBasket200703'.
There are 12761633 rows in 121540 pages for object "FctMarketBasket200703".
DBCC results for 'FctInventory200704'.
There are 37695453 rows in 523551 pages for object "FctInventory200704".
DBCC results for 'vw_TicketInternalKey200602'.
There are 19189009 rows in 59409 pages for object "vw_TicketInternalKey200602".
DBCC results for 'FctItem200608'.
There are 64855844 rows in 1457417 pages for object "FctItem200608".
DBCC results for 'AggFctInventory200806'.
There are 0 rows in 0 pages for object "AggFctInventory200806".
DBCC results for 'FctInventoryWasteDetail200510'.
There are 0 rows in 0 pages for object "FctInventoryWasteDetail200510".
DBCC results for 'FctPurchases200511'.
There are 70537 rows in 7054 pages for object "FctPurchases200511".
DBCC results for 'FctTender200701'.
There are 34225526 rows in 561075 pages for object "FctTender200701".
DBCC results for 'vw_TicketInternalKey200601'.
There are 20660832 rows in 63966 pages for object "vw_TicketInternalKey200601".
DBCC results for 'FctTrans200608'.
There are 39789289 rows in 653515 pages for object "FctTrans200608".
DBCC results for 'vw_FctTransFctTender200609'.
There are 23083511 rows in 378604 pages for object "vw_FctTransFctTender200609".
DBCC results for 'FctInventory200801'.
There are 29905699 rows in 523773 pages for object "FctInventory200801".
DBCC results for 'FctInventoryWasteDetail200511'.
There are 0 rows in 0 pages for object "FctInventoryWasteDetail200511".
DBCC results for 'DimTill'.
There are 16 rows in 1 pages for object "DimTill".
DBCC results for 'FctInventory200705'.
There are 38970106 rows in 541256 pages for object "FctInventory200705".
DBCC results for 'vw_TicketInternalKey200512'.
There are 21779722 rows in 67430 pages for object "vw_TicketInternalKey200512".
DBCC results for 'vw_FctTransFctTender200608'.
There are 25207905 rows in 435214 pages for object "vw_FctTransFctTender200608".
DBCC results for 'vw_FctTransFctTender200610'.
There are 23766888 rows in 389807 pages for object "vw_FctTransFctTender200610".
DBCC results for 'FctInventoryWasteDetail200512'.
There are 0 rows in 0 pages for object "FctInventoryWasteDetail200512".
DBCC results for 'FctTender200702'.
There are 32671979 rows in 535607 pages for object "FctTender200702".
DBCC results for 'vw_TicketInternalKey200511'.
There are 21311948 rows in 65982 pages for object "vw_TicketInternalKey200511".
DBCC results for 'vw_FctTransFctTender200607'.
There are 25234186 rows in 442871 pages for object "vw_FctTransFctTender200607".
DBCC results for 'FctInventory200802'.
There are 0 rows in 0 pages for object "FctInventory200802".
DBCC results for 'AggFctInventoryReview'.
There are 958840 rows in 7611 pages for object "AggFctInventoryReview".
DBCC results for 'FctInventoryWasteDetail200601'.
There are 128704 rows in 10726 pages for object "FctInventoryWasteDetail200601".
DBCC results for 'FctPurchasesDetail200511'.
There are 1409930 rows in 46998 pages for object "FctPurchasesDetail200511".
DBCC results for 'FctInventory200706'.
There are 38252109 rows in 531284 pages for object "FctInventory200706".
DBCC results for 'vw_TicketInternalKey200510'.
There are 22062804 rows in 68306 pages for object "vw_TicketInternalKey200510".
DBCC results for 'DimCashierScoreCardMetric_01162007'.
There are 46 rows in 16 pages for object "DimCashierScoreCardMetric_01162007".
DBCC results for 'AggFctInventory200711'.
There are 39850504 rows in 355810 pages for object "AggFctInventory200711".
DBCC results for 'FctInventoryWasteDetail200602'.
There are 112303 rows in 9359 pages for object "FctInventoryWasteDetail200602".
DBCC results for 'FctTender200703'.
There are 36122249 rows in 592169 pages for object "FctTender200703".
DBCC results for 'vw_TicketInternalKey200509'.
There are 21589065 rows in 66840 pages for object "vw_TicketInternalKey200509".
DBCC results for 'AggFctInventory200801'.
There are 29441137 rows in 262868 pages for object "AggFctInventory200801".
DBCC results for 'vw_FctTransFctTender200606'.
There are 24283086 rows in 426176 pages for object "vw_FctTransFctTender200606".
DBCC results for 'DimCashierScoreCardMetric_orig'.
There are 44 rows in 15 pages for object "DimCashierScoreCardMetric_orig".
DBCC results for 'FctInventory200803'.
There are 0 rows in 0 pages for object "FctInventory200803".
DBCC results for 'FctInventoryWasteDetail200603'.
There are 127779 rows in 10649 pages for object "FctInventoryWasteDetail200603".
DBCC results for 'FctItem200610'.
There are 60162067 rows in 1305938 pages for object "FctItem200610".
DBCC results for 'FctItem'.
There are 0 rows in 1 pages for object "FctItem".
DBCC results for 'FctInventoryDetailOverShort200704'.
There are 1484083 rows in 46481 pages for object "FctInventoryDetailOverShort200704".
DBCC results for 'vw_FctTransFctTender200605'.
Msg 8907, Level 16, State 1, Server KNXPNAETLSQL2005, Line 1
Indexed view 'vw_FctTransFctTender200605' (object ID 1549248574) contains rows not produced by the view definition. Refer to Books Online for more information on this error. This does not necessarily represent an integrity issue with the data in this database.
Msg 8908, Level 16, State 1, Server KNXPNAETLSQL2005, Line 1
Indexed view 'vw_FctTransFctTender200605' (object ID 1549248574) does not contain all rows that the view definition produces. Refer to Books Online for more information on this error. This does not necessarily represent an integrity issue with the data in this database.
There are 22888622 rows in 401040 pages for object "vw_FctTransFctTender200605".
CHECKDB found 0 allocation errors and 2 consistency errors in table 'vw_FctTransFctTender200605' (object ID 1549248574).
DBCC results for 'FctTrans200801'.
There are 22806016 rows in 352545 pages for object "FctTrans200801".
DBCC results for 'FctInventoryWasteDetail200604'.
There are 115408 rows in 9618 pages for object "FctInventoryWasteDetail200604".
DBCC results for 'FctPurchasesDetail200510'.
There are 1368026 rows in 45601 pages for object "FctPurchasesDetail200510".
DBCC results for 'FctItem200611'.
There are 58588889 rows in 1271737 pages for object "FctItem200611".
DBCC results for 'FctTenderBridge200701'.
There are 23067465 rows in 59916 pages for object "FctTenderBridge200701".
DBCC results for 'FctInventoryDetailOverShort200705'.
There are 1517066 rows in 48130 pages for object "FctInventoryDetailOverShort200705".
DBCC results for 'vw_FctTransFctTender200604'.
There are 22618689 rows in 396964 pages for object "vw_FctTransFctTender200604".
DBCC results for 'FctItem200801'.
There are 41208843 rows in 894225 pages for object "FctItem200801".
DBCC results for 'FctInventory200804'.
There are 0 rows in 0 pages for object "FctInventory200804".
DBCC results for 'FctInventoryWasteDetail200605'.
There are 123662 rows in 10306 pages for object "FctInventoryWasteDetail200605".
DBCC results for 'FctItem200612'.
There are 58947898 rows in 1279917 pages for object "FctItem200612".
DBCC results for 'FctTenderBridge200702'.
There are 21954795 rows in 57026 pages for object "FctTenderBridge200702".
DBCC results for 'FctInventoryDetailOverShort200706'.
There are 1340892 rows in 43708 pages for object "FctInventoryDetailOverShort200706".
DBCC results for 'FctInventory200707'.
There are 39662660 rows in 561343 pages for object "FctInventory200707".
DBCC results for 'vw_FctTransFctTender200603'.
There are 23344796 rows in 409706 pages for object "vw_FctTransFctTender200603".
DBCC results for 'FctInventoryWasteDetail200606'.
There are 115162 rows in 9597 pages for object "FctInventoryWasteDetail200606".
DBCC results for 'FctMarketBasket200610'.
There are 12762686 rows in 121550 pages for object "FctMarketBasket200610".
DBCC results for 'FctTenderBridge200703'.
There are 24276224 rows in 63057 pages for object "FctTenderBridge200703".
DBCC results for 'vw_FctTransFctTender200602'.
There are 19578204 rows in 343603 pages for object "vw_FctTransFctTender200602".
DBCC results for 'FctInventory200805'.
There are 0 rows in 0 pages for object "FctInventory200805".
DBCC results for 'FctInventoryWasteDetail200607'.
There are 122175 rows in 10182 pages for object "FctInventoryWasteDetail200607".
DBCC results for 'FctPurchases200510'.
There are 70660 rows in 7066 pages for object "FctPurchases200510".
DBCC results for 'FctMarketBasket200611'.
There are 13561902 rows in 129161 pages for object "FctMarketBasket200611".
DBCC results for 'FctTrans200701'.
There are 36465522 rows in 564690 pages for object "FctTrans200701".
DBCC results for 'FctInventory200708'.
There are 39701544 rows in 616017 pages for object "FctInventory200708".
DBCC results for 'vw_FctTransFctTender200601'.
Msg 8907, Level 16, State 1, Server KNXPNAETLSQL2005, Line 1
Indexed view 'vw_FctTransFctTender200601' (object ID 1613248802) contains rows not produced by the view definition. Refer to Books Online for more information on this error. This does not necessarily represent an integrity issue with the data in this database.
There are 21061710 rows in 369635 pages for object "vw_FctTransFctTender200601".
CHECKDB found 0 allocation errors and 1 consistency errors in table 'vw_FctTransFctTender200601' (object ID 1613248802).
DBCC results for 'FctInventoryWasteDetail200608'.
There are 121127 rows in 10094 pages for object "FctInventoryWasteDetail200608".
DBCC results for 'FctMarketBasket200612'.
There are 12860503 rows in 122481 pages for object "FctMarketBasket200612".
DBCC results for 'FctTrans200702'.
There are 33238975 rows in 514737 pages for object "FctTrans200702".
DBCC results for 'AggFctCashierScoreCard200701'.
There are 1434201 rows in 11952 pages for object "AggFctCashierScoreCard200701".
DBCC results for 'vw_FctTransFctTender200512'.
Msg 8908, Level 16, State 1, Server KNXPNAETLSQL2005, Line 1
Indexed view 'vw_FctTransFctTender200512' (object ID 1629248859) does not contain all rows that the view definition produces. Refer to Books Online for more information on this error. This does not necessarily represent an integrity issue with the data in this database.
There are 22210120 rows in 389795 pages for object "vw_FctTransFctTender200512".
CHECKDB found 0 allocation errors and 1 consistency errors in table 'vw_FctTransFctTender200512' (object ID 1629248859).
DBCC results for 'FctInventory200806'.
There are 0 rows in 0 pages for object "FctInventory200806".
DBCC results for 'FctInventoryWasteDetail200609'.
There are 115143 rows in 9596 pages for object "FctInventoryWasteDetail200609".
DBCC results for 'FctInventory200610'.
There are 34233332 rows in 461211 pages for object "FctInventory200610".
DBCC results for 'FctTrans200703'.
There are 39713913 rows in 614538 pages for object "FctTrans200703".
DBCC results for 'FctItem200704'.
There are 60365747 rows in 1310370 pages for object "FctItem200704".
DBCC results for 'AggFctCashierScoreCard200702'.
There are 1214541 rows in 10122 pages for object "AggFctCashierScoreCard200702".
DBCC results for 'FctInventory200709'.
There are 38675506 rows in 545787 pages for object "FctInventory200709".
DBCC results for 'vw_FctTransFctTender200511'.
Msg 8908, Level 16, State 1, Server KNXPNAETLSQL2005, Line 1
Indexed view 'vw_FctTransFctTender200511' (object ID 1645248916) does not contain all rows that the view definition produces. Refer to Books Online for more information on this error. This does not necessarily represent an integrity issue with the data in this database.
There are 21730576 rows in 381381 pages for object "vw_FctTransFctTender200511".
CHECKDB found 0 allocation errors and 1 consistency errors in table 'vw_FctTransFctTender200511' (object ID 1645248916).
DBCC results for 'FctInventoryWasteDetail200610'.
There are 125323 rows in 10444 pages for object "FctInventoryWasteDetail200610".
DBCC results for 'FctPurchases200509'.
There are 72751 rows in 7276 pages for object "FctPurchases200509".
DBCC results for 'FctItem200705'.
There are 65959516 rows in 1445243 pages for object "FctItem200705".
DBCC results for 'AggFctCashierScoreCard200703'.
There are 1406685 rows in 11723 pages for object "AggFctCashierScoreCard200703".
DBCC results for 'vw_FctTransFctTender200510'.
Msg 8908, Level 16, State 1, Server KNXPNAETLSQL2005, Line 1
Indexed view 'vw_FctTransFctTender200510' (object ID 1661248973) does not contain all rows that the view definition produces. Refer to Books Online for more information on this error. This does not necessarily represent an integrity issue with the data in this database.
There are 22504065 rows in 394958 pages for object "vw_FctTransFctTender200510".
CHECKDB found 0 allocation errors and 1 consistency errors in table 'vw_FctTransFctTender200510' (object ID 1661248973).
DBCC results for 'FctInventoryDetailOverShort200801'.
There are 1040806 rows in 24007 pages for object "FctInventoryDetailOverShort200801".
DBCC results for 'FctMarketBasketFuel200612'.
There are 6121409 rows in 65822 pages for object "FctMarketBasketFuel200612".
DBCC results for 'AggFctInventory200707'.
There are 39662300 rows in 354130 pages for object "AggFctInventory200707".
DBCC results for 'FctInventoryWasteDetail200611'.
There are 122336 rows in 10195 pages for object "FctInventoryWasteDetail200611".
DBCC results for 'FctInventory200611'.
There are 33667100 rows in 438313 pages for object "FctInventory200611".
DBCC results for 'FctItem200706'.
There are 67926976 rows in 1474350 pages for object "FctItem200706".
DBCC results for 'AggFctCashierScoreCard200704'.
There are 2087657 rows in 17398 pages for object "AggFctCashierScoreCard200704".
DBCC results for 'TempMTDDailyMCheckDate'.
There are 16359 rows in 46 pages for object "TempMTDDailyMCheckDate".
DBCC results for 'FctInventory200710'.
There are 40550644 rows in 574700 pages for object "FctInventory200710".
DBCC results for 'vw_FctTransFctTender200509'.
There are 22017622 rows in 386422 pages for object "vw_FctTransFctTender200509".
DBCC results for 'FctInventoryDetailOverShort200802'.
There are 0 rows in 0 pages for object "FctInventoryDetailOverShort200802".
DBCC results for 'FctInventoryWasteDetail200612'.
There are 178662 rows in 15465 pages for object "FctInventoryWasteDetail200612".
DBCC results for 'FctMarketBasket200704'.
There are 12611156 rows in 120107 pages for object "FctMarketBasket200704".
DBCC results for 'AggFctCashierScoreCard200705'.
There are 1442440 rows in 12021 pages for object "AggFctCashierScoreCard200705".
DBCC results for 'AggFctInventory200701'.
There are 35666434 rows in 318452 pages for object "AggFctInventory200701".
DBCC results for 'TempMTDDailyCheck'.
There are 605 rows in 5 pages for object "TempMTDDailyCheck".
DBCC results for 'FctInventoryDetailOverShort200803'.
There are 0 rows in 0 pages for object "FctInventoryDetai

View 1 Replies View Related

Tape Drive Not Detected

Feb 5, 2008

I have a SQL 2005 Server (SP1) running on Windows 2003 server machine. Now windows can detect the tape drive attached to the system as 'HP StorageWorks DLT VS160'. Even 'ntbackup' detects it and is able to backup data to the tape drive. However, SQL Server is unable to detect the tape drive. The tape does not show up in the Backup Devices in Server Objects and hence I'm unable to take backups directly to the tape via SQL Server. How do I get SQL 2005 to recognize the tape drive?

View 5 Replies View Related

Err. 823 Torn Page Detected

Jul 20, 2005

Hi all,One of my database was suspected, So I try to recover database then itgives this errorErr. 823 Torn Page Detected823, ... 24, spid51 i/o error Torn Page (Detected)during read at offset 0x0000000040e0000 in file .........How can I recover my SQL Server 2000 Database? Please helpThanks

View 6 Replies View Related

Previous Version Detected

Jun 7, 2007

I just dowmnloaded sql 2005. I have been trying to install sql 2005 install keeps saying a previous version exists cannot proceed three is no sql anywhere to be found. what do i do? The support to this point is non-existent typical MSFT if you are not the peron to help who is?

View 1 Replies View Related

An Inconsistency Was Detected During An Internal Operation

Oct 19, 2007



Hi experts. I would like to ask for this error that I've encountered

(Error msg)
Msg 5242, Level 22, State 1, Line 1
An inconsistency was detected during an internal operation in database 'smartapp'(ID:9) on page (1:28827). Please contact technical support. Reference number 7.

then I tried executing this:


DBCC CHECKDB('Bizbox_training', 'smartapp')
DBCC CHECKDB('Bizbox_training', 'smartapp')

but this error still occurs, can you help me fixing this kind of problem. Thanks in advance.

View 2 Replies View Related

A Deadlock Was Detected While Trying To Lock Variables

Mar 20, 2008



Hi Friends,

I have a problem to read varibale inside script.
the error discription is following-

Error: A deadlock was detected while trying to lock variables "User::FilePath" for read/write access. A lock cannot be acquired after 16 attempts. The locks timed out.



this is my code. i my code i am using two variables, but i can access only one .
i have to retrive file directory and file path is generated by other system.


Public Sub Main()

'

' Add your code here

'

Dim vars As Variables



If Not vars Is Nothing Then

vars.Unlock()

End If

Dim lFileName As String = String.Empty

Dim lFilePath As String = String.Empty

Dts.VariableDispenser.LockOneForWrite("FilePath", vars)

Dts.VariableDispenser.LockOneForRead("FileName", vars)

Dts.VariableDispenser.GetVariables(vars)

lFileName = vars.Item("FileName").Value.ToString

lFilePath = GetDirectoryName(lFileName)

If Not lFilePath.EndsWith("") Then

lFilePath = String.Format("{0}", lFilePath)

End If

vars("UnzippedKeyStatFilePath").Value = lFilePath

vars.Unlock()

Dts.TaskResult = Dts.Results.Success



End Sub

Thanks
Manish Jain

View 4 Replies View Related

I/O Error (torn Page) Detected During Read

Mar 31, 2008

we are running a maintainance plan on sql 2000 standard edition, got the error,

[2] Database db_source: Check Data Linkage...
[Microsoft SQL-DMO (ODBC SQLState: 42000)] Error 8928: [Microsoft][ODBC SQL Server Driver][SQL Server]Object ID 1221579390, index ID 0: Page (1:197116) could not be processed. See other errors for details.
[Microsoft][ODBC SQL Server Driver][SQL Server]Table error: Object ID 1221579390, index ID 0, page (1:197116).
Test (IS_ON (BUF_IOERR, bp->bstat) &&bp->berrcode) failed. Values are 2057 and -1.
[Microsoft][ODBC SQL Server Driver][SQL Server]CHECKDB found 0 allocation errors and 2 consistency errors in table 'xxx'(object ID 1221579390).
[Microsoft][ODBC SQL Server Driver][SQL Server]CHECKDB found 0 allocation errors and 2 consistency errors in database 'db_source'.
[Microsoft][ODBC SQL Server Driver][SQL Server]repair_allow_data_loss is the minimum repair level for the errors found by DBCC CHECKDB (db_source noindex).

when i run query on anlyzer select * from xxx, i got the error
Server: Msg 823, Level 24, State 2, Line 1
I/O error (torn page) detected during read at offset 0x000000603f8000 in file 'F:Program FilesMicrosoft SQL ServerMSSQLdatadb_Data.MDF'.

Connection Broken

please help. thanks

View 9 Replies View Related

OLEDB Conn Mgr Change Is Not Detected In BIDS/vs.net

Aug 23, 2007

I have changed the database name in an ole db connection manager. (The server name is identical)

When I run the package, it is still using the old db name.

I have tried restarting VS but it makes no difference.

How can I get it to stop caching the original name/update it to get the new name?

View 1 Replies View Related

An Inconsistency Was Detected During An Internal Operation In Database

Jan 21, 2008

I'm getting the following error:

An inconsistency was detected during an internal operation in database 'LocalLab2000'(ID:5) on page (1:19992). Please contact technical support. Reference number 5.

I ran DBCC CHECKDB ('locallab2000') and no error messages came up and still have the same problem.
I ran then dbcc checktable ('part') with DATA_PURITY and no error messager came up and the problem still whenever i select anuthing in that particular table.

Any ideas?

Thank you

View 1 Replies View Related

An Inconsistency Was Detected During An Internal Operation In Database

Jan 21, 2008

I'm getting the following error:



Msg 5242, Level 22, State 1, Line 1

An inconsistency was detected during an internal operation in database 'LocalLab2000'(ID:5) on page (1:19992). Please contact technical support. Reference number 5.

I ran DBCC CHECKDB and there's no error messages neither alloc or consistency.
I ran dbcc checktable ('part') with DATA_PURITY and still no errors, but i still have the inconsistency error message whenever i access this particular table.

Any ideas?

-Ricardo Lozano

View 1 Replies View Related

'Identity Insert Off' Not Detected, Validation Error

Jul 24, 2007

I am trying to capture the rows that fail during an insert.



The insert is an OLE DB command component.

I have config'd errors to redirect to a flat file.



My problem is this

I need to override the identity, fine if you are using 'fast load' but then you can't capture the redirected rows.

So I am using the regular 'table or view' data access mode, but then I lose the 'keep identity' checkbox.



At this point I add in another OLE DB command "SET IDENTITY_INSERT table OFF" before the actual insert ODB component.



But now it won't validate. I changed the task 'delay validation' property to true, but still it is failing.



It seemingly cannot detect this statement.



So how then can I capture error rows from an insert where I need to switch the identity off?



[This is a one off historic load I am working on]

View 8 Replies View Related

Smart Device CAB Project Detected Dependencies Not Included?

Jul 5, 2006



Hi

I have created a Smart device application for Windows CE 5.0 device using Visual studio 2005 and i have added the smart cab project to the solution. When I add project out in teh appllication folder, the detected dependencies are not included. Instead dependent files appear with red circle in solution explorer.

My project uses .Net Framework 2.0 and SQL Server mobile 2005 and SQL Server mobile database file and some symbol files

I need included all of them in my cab project and when user clicks on it (in the device) it should install all of them.

Let me know why detected dependencies are not included in the Cab project and how can get all the above mentioned things to be installed along with my program



Regards

Mani

View 4 Replies View Related

A Potentially Dangerous Request.form Value Was Detected From The Client

Mar 8, 2007

I am trying to pass in a query through reporting services where part of the query string is an <A HREF= "Http:// ......... URL string. Before any kind of execution can occur I get the error mentioned in the title.

I have tried to research this and find suggestions if it was my own .net code but how to turn it off in reporting services? The URL is valid and this is a controlled environment so I am not particularly worried about somebody using this as an exploit.



Thanks for any suggestions.





View 2 Replies View Related

Transact SQL :: Invalid Column Not Detected In Stored Procedure

Aug 17, 2015

When I create/alter a stored procedure I am expecting to get an error because one of the columns was renamed.

However, the stored procedure compiles without error.  Is this correct behavior?

Example:  Create a Test table.  Create stored procedure that reference table along with temp table.  The columns are not verified.  The stored procedure still compiles, even with the join containing bad column names.  Why is an error
not thrown?

Example:
create table Test (col1 int)
GO

create procedure TestSP
as
create table #Temp (col1 int)
select 1
from Test a
join Temp b
on a.bad = b.bad
-- Bad column names
GO

View 2 Replies View Related

Trigger Issues Causing An Inconsistency Was Detected During An Internal Operation.

Aug 1, 2007

Hi All:

I have a trigger (just craeted) on of my tables.

The trigger makes use of the inserted and deleted psuedo tables.

When an event occurs where it fires the trigger, I am getting the following error:

"Msg 5243, Level 22, State 1, Procedure TR_PRICE_MAPPING_AUDIT, Line 39
An inconsistency was detected during an internal operation. Please contact technical support. Reference number 3."

I tried to drop the trigger and recreate it. Still the same issue.

I ahve other triggers that handle the same type of audit process i am doing, but do not cause an error.

Does anyone have any thoughts.

The Line 39, is the point where the OPEN call to the currsor.



Here is the code for the trigger:

Create TRIGGER [dbo].[TR_PRICE_MAPPING_AUDIT]
ON [dbo].[REST_MENU_PRICE_INCREASE_MAPPING]
AFTER UPDATE

AS

DECLARE
@V_NEW_PCT_INCREASE DECIMAL(18,2),
@V_OLD_PCT_INCREASE DECIMAL(18,2),
@V_REST_MAPPING_ID INT,
@V_OLD_IS_ACTIVE VARCHAR(3),
@V_NEW_IS_ACTIVE VARCHAR(3),
@V_OLD_IS_DELETE VARCHAR(3),
@V_NEW_IS_DELETE VARCHAR(3),
@V_OLD_BEGIN_DATETIME DATETIME,
@V_REST_ID INT

BEGIN


print N'test'

DECLARE PRICE_CUR CURSOR FOR
SELECT
D.REST_ID,
D.rest_price_mapping_id,
I.PCT_INCREASE,
D.PCT_INCREASE,
I.IS_ACTIVE,
D.IS_ACTIVE,
I.IS_DELETE,
D.IS_DELETE,
D.BEGIN_DATETIME
FROM INSERTED I, DELETED D
WHERE D.rest_price_mapping_id=I.rest_price_mapping_id
and d.pct_increase<>i.pct_increase
AND D.BEGIN_DATETIME<=GETDATE()


OPEN PRICE_CUR
FETCH NEXT FROM PRICE_CUR
INTO
@V_REST_ID,
@V_REST_MAPPING_ID,
@V_NEW_PCT_INCREASE ,
@V_OLD_PCT_INCREASE,
@V_NEW_IS_ACTIVE,
@V_OLD_IS_ACTIVE,
@V_NEW_IS_DELETE,
@V_OLD_IS_delete,
@V_OLD_BEGIN_DATETIME

WHILE @@FETCH_STATUS=0
BEGIN
BEGIN TRANSACTION
--THERE IS A CHNAGE IN ONE THE KEY ELEMENTS OF THE TABLE,
-- WE NEED TO SET CURRENT TO END_DATE AND INSERT NEW RECORD
INSERT INTO REST_MENU_PRICE_INCREASE_MAPPING_AUDIT
(REST_ID,REST_PRICE_MAPPING_ID,PCT_INCREASE,
BEGIN_DATETIME,END_DATETIME,
IS_ACTIVE,iS_DELETE)
VALUES(@V_REST_ID,@V_REST_MAPPING_ID,
@V_OLD_PCT_INCREASE,
@V_OLD_BEGIN_DATETIME,GETDATE(),
@V_OLD_IS_ACTIVE,@V_OLD_IS_DELETE)

UPDATE REST_MENU_PRICE_INCREASE_MAPPING
SET BEGIN_DATETIME=GETDATE()
WHERE REST_PRICE_MAPPING_ID=@V_REST_MAPPING_ID
COMMIT TRANSACTION
FETCH NEXT FROM PRICE_CUR
INTO
@V_REST_ID,
@V_REST_MAPPING_ID,
@V_NEW_PCT_INCREASE ,
@V_OLD_PCT_INCREASE,
@V_NEW_IS_ACTIVE,
@V_OLD_IS_ACTIVE,
@V_NEW_IS_DELETE,
@V_OLD_IS_delete,
@V_OLD_BEGIN_DATETIME
END
CLOSE PRICE_CUR
DEALLOCATE PRICE_CUR
END

View 4 Replies View Related

The Buffer Manager Detected That The System Was Low On Virtual Memory, But Was Unable To Swap Out Any Buffers.

Oct 25, 2007

[DTS.Pipeline] Information: The buffer manager detected that the system was low on virtual memory, but was unable to swap out any buffers. 12 buffers were considered and 12 were locked. Either not enough memory is available to the pipeline because not enough is installed, other processes are using it, or too many buffers are locked.

View 12 Replies View Related

XML Validation Error Detected On The Target Service. How To Keep And Save The Original Wrong XML Message?

May 9, 2007

Hello,



I have a message that is validated using a schema.


If I send the message that is not compliant with the schema, the message is not enqueued on the target queue but it is send back to the Initiator queue and the message_body contains the description of the Error.



On the Initiator queue I have activated a SP that is I used to end the conversation and log the error.



One of the information that I need to log is the original XML message that causes the validation error so I can check it.


It seems that in the moment I'm on this SP, activated when there is something on the Initiator queue I have no memory of the original message or at least I'm not able to find it.



Any hints/helps??



Thank you very much!

M.B.

View 3 Replies View Related

Db Consistency

Apr 6, 2006

Asad writes "I have a report that is generated each day that tells me some what of status of DB.

For the first time in the report I see an item as follows:

DB Consistency = 2 followed by the table name.

Can someone please provide info on this.

Thanks."

View 2 Replies View Related







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