博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
DBCC--CHECKDB--结果收集
阅读量:5144 次
发布时间:2019-06-13

本文共 841 字,大约阅读时间需要 2 分钟。

--由宋沄剑提供

CREATE TABLE [dbo].[dbcc_history](

[Error] [int] NULL,

[Level] [int] NULL,

[State] [int] NULL,

[MessageText] [varchar](7000) NULL,

[RepairLevel] [int] NULL,

[Status] [int] NULL,

[DbId] [int] NULL,

[Id] [int] NULL,

[IndId] [int] NULL,

[PartitionID] [int] NULL,

[AllocUnitID] [int] NULL,

[File] [int] NULL,

[Page] [int] NULL,

[Slot] [int] NULL,

[RefFile] [int] NULL,

[RefPage] [int] NULL,

[RefSlot] [int] NULL,

[Allocation] [int] NULL,

[TimeStamp] [datetime] NULL CONSTRAINT [DF_dbcc_history_TimeStamp] DEFAULT (GETDATE())

) ON [PRIMARY]

GO

INSERT INTO dbcc_history ([Error], [Level], [State], MessageText, RepairLevel, [Status], 

[DbId], Id, IndId, PartitionId, AllocUnitId, [File], Page, Slot, RefFile, RefPage, 

RefSlot,Allocation)

EXEC ('dbcc checkdb(''master'') with tableresults')

转载于:https://www.cnblogs.com/TeyGao/p/3518760.html

你可能感兴趣的文章
每天CookBook之Python-003
查看>>
每天CookBook之Python-004
查看>>
Android设置Gmail邮箱
查看>>
js编写时间选择框
查看>>
Java数据结构和算法(四)--链表
查看>>
JIRA
查看>>
小技巧——直接在目录中输入cmd然后就打开cmd命令窗口
查看>>
深浅拷贝(十四)
查看>>
HDU 6370(并查集)
查看>>
BZOJ 1207(dp)
查看>>
PE知识复习之PE的导入表
查看>>
HDU 2076 夹角有多大(题目已修改,注意读题)
查看>>
洛谷P3676 小清新数据结构题(动态点分治)
查看>>
九校联考-DL24凉心模拟Day2T1 锻造(forging)
查看>>
Attributes.Add用途与用法
查看>>
L2-001 紧急救援 (dijkstra+dfs回溯路径)
查看>>
javascript 无限分类
查看>>
spring IOC装配Bean(注解方式)
查看>>
[面试算法题]有序列表删除节点-leetcode学习之旅(4)
查看>>
SpringBoot系列五:SpringBoot错误处理(数据验证、处理错误页、全局异常)
查看>>