一台SQL Server 2008 R2版本(具体版本如下所示)的数据库,最近几天更新统计信息的作业出错,错误如下所示:

Microsoft SQL Server 2008 R2 (SP2) - 10.50.4000.0 (X64)

Jun 28 2012 08:36:30

Copyright (c) Microsoft Corporation

Standard Edition (64-bit) on Windows NT 6.1 <X64> (Build 7601: Service Pack 1) (Hypervisor)

第一次碰到这么奇葩的问题。查看错误日志,就会发现更新统计信息时出现异常,生成了dump文件。

对表做DBCC CHECKTABLE发现正常,未有一致性错误。

DBCC CHECKTABLE('TBusRetail')

后面查了一下资料,在官方文档看到有个Bug会导致这个问题,官方文档为:FIX: An access violation may occur when you update the statistics of a table after you enable and then disable conflict detection on a table in in SQL Server 2008 or in SQL Server 2008 R2。刚好我们这个环境的版本也在其中。具体参考下面:

Cause

This issue occurs because the database engine is trying to load dangling statistics. When P2P conflict detection is enabled, an MDColumnIdP2pCdId system column is added to the base index rowset of the table. Replication-related queries may create statistics on the system column automatically. When P2P conflict detection is disabled, the system column is removed from the table. However, the corresponding statistics remain. Therefore, updating statistics causes the access violation exception to occur because the statistics cannot be added to the table.

SQL Server 2008 Service Pack 2

The fix for this issue was first released in Cumulative Update 3 for SQL Server 2008 Service Pack 2. For more information about this cumulative update package, click the following article number to view the article in the Microsoft Knowledge Base:

2498535 Cumulative update package 3 for SQL Server 2008 Service Pack 2

Note Because the builds are cumulative, each new fix release contains all the hotfixes and all the security fixes that were included with the previous SQL Server 2008 fix release. Microsoft recommends that you consider applying the most recent fix release that contains this hotfix. For more information, click the following article number to view the article in the Microsoft Knowledge Base:

2402659 The SQL Server 2008 builds that were released after SQL Server 2008 Service Pack 2 was released

Microsoft SQL Server 2008 hotfixes are created for specific SQL Server service packs. You must apply a SQL Server 2008 Service Pack 2 hotfix to an installation of SQL Server 2008 Service Pack 2. By default, any hotfix that is provided in a SQL Server service pack is included in the next SQL Server service pack.

The fix for this issue was first released in Cumulative Update package 6 for SQL Server 2008 R2. For more information about how to obtain this cumulative update package, click the following article number to view the article in the Microsoft Knowledge Base:

2489376 Cumulative Update package 6 for SQL Server 2008 R2

Note Because the builds are cumulative, each new fix release contains all the hotfixes and all the security fixes that were included with the previous SQL Server 2008 R2 fix release. We recommend that you consider applying the most recent fix release that contains this hotfix. For more information, click the following article number to view the article in the Microsoft Knowledge Base:

981356 The SQL Server 2008 R2 builds that were released after SQL Server 2008 R2 was released

但是等我打上补丁后,测试发现问题依然存在,也只有这个表存在这个问题。后面仔细检查,发现这个表有不少计算列(Computed Column),刚好以前也遇到过由于计算列导致统计信息更新出现错误的情况,一检查,发现这表有大量的统计信息,遂生成删除统计信息的脚本后执行删除(排除了相关索引的统计信息)。然后再更新统计信息,OK,问题解决了。看来又是神奇的计算列(Computed Column)导致的统计信息更新异常!

SELECT  'DROP STATISTICS dbo.TBusRetail.' + QUOTENAME(name) + ';'

FROM    sys.stats

WHERE   object_id = OBJECT_ID('dbo.TBusRetail')

DROP STATISTICS dbo.TBusRetail.[PK_TBUSRETAIL];  --排除这个统计信息

DROP STATISTICS dbo.TBusRetail.[IdxRefNoOpDate]; --排除这个统计信息

DROP STATISTICS dbo.TBusRetail.[_WA_Sys_00000016_58BCECDB]

DROP STATISTICS dbo.TBusRetail.[_WA_Sys_00000015_58BCECDB]

DROP STATISTICS dbo.TBusRetail.[_WA_Sys_00000003_58BCECDB]

DROP STATISTICS dbo.TBusRetail.[_WA_Sys_PayWay_58BCECDB]

DROP STATISTICS dbo.TBusRetail.[_WA_Sys_Opr_58BCECDB]

DROP STATISTICS dbo.TBusRetail.[_WA_Sys_Charger_58BCECDB]

DROP STATISTICS dbo.TBusRetail.[_WA_Sys_RefNo_58BCECDB]

DROP STATISTICS dbo.TBusRetail.[_WA_Sys_TicketAmount_58BCECDB]

DROP STATISTICS dbo.TBusRetail.[_WA_Sys_ChargeDate_58BCECDB]

DROP STATISTICS dbo.TBusRetail.[_WA_Sys_TicketFAmount_58BCECDB]

DROP STATISTICS dbo.TBusRetail.[_WA_Sys_PayAmount_58BCECDB]

DROP STATISTICS dbo.TBusRetail.[_WA_Sys_Accepted_58BCECDB]

DROP STATISTICS dbo.TBusRetail.[_WA_Sys_OpDate_58BCECDB]

DROP STATISTICS dbo.TBusRetail.[_WA_Sys_Checked_58BCECDB]

DROP STATISTICS dbo.TBusRetail.[_WA_Sys_CheckDate_58BCECDB]

DROP STATISTICS dbo.TBusRetail.[_WA_Sys_HangUp_58BCECDB]

DROP STATISTICS dbo.TBusRetail.[_WA_Sys_TPayAmount_58BCECDB]

DROP STATISTICS dbo.TBusRetail.[_WA_Sys_Remark_58BCECDB]

DROP STATISTICS dbo.TBusRetail.[_WA_Sys_RetailType_58BCECDB]

DROP STATISTICS dbo.TBusRetail.[_WA_Sys_AcceptDate_58BCECDB]

DROP STATISTICS dbo.TBusRetail.[_WA_Sys_IfNetRetail_58BCECDB]

DROP STATISTICS dbo.TBusRetail.[_WA_Sys_DisModified_58BCECDB]

DROP STATISTICS dbo.TBusRetail.[_WA_Sys_Dealed_58BCECDB]

DROP STATISTICS dbo.TBusRetail.[_WA_Sys_VipScale_58BCECDB]

DROP STATISTICS dbo.TBusRetail.[_WA_Sys_00000024_58BCECDB]

DROP STATISTICS dbo.TBusRetail.[_WA_Sys_00000032_58BCECDB]

DROP STATISTICS dbo.TBusRetail.[_WA_Sys_00000033_58BCECDB]

DROP STATISTICS dbo.TBusRetail.[_WA_Sys_00000031_58BCECDB]

DROP STATISTICS dbo.TBusRetail.[_WA_Sys_00000030_58BCECDB]

DROP STATISTICS dbo.TBusRetail.[_WA_Sys_0000002C_58BCECDB]

DROP STATISTICS dbo.TBusRetail.[_WA_Sys_0000002B_58BCECDB]

DROP STATISTICS dbo.TBusRetail.[_WA_Sys_0000002A_58BCECDB]

DROP STATISTICS dbo.TBusRetail.[_WA_Sys_00000029_58BCECDB]

DROP STATISTICS dbo.TBusRetail.[_WA_Sys_00000028_58BCECDB]

DROP STATISTICS dbo.TBusRetail.[_WA_Sys_00000027_58BCECDB]

DROP STATISTICS dbo.TBusRetail.[_WA_Sys_00000026_58BCECDB]

DROP STATISTICS dbo.TBusRetail.[_WA_Sys_00000025_58BCECDB]

DROP STATISTICS dbo.TBusRetail.[_WA_Sys_00000018_58BCECDB]

上一次遇到的问题在这里:消息 8134,级别 16,状态 1,第 1 行 遇到以零作除数错误

 

参考资料:

https://support.microsoft.com/en-us/help/2498796/fix-an-access-violation-may-occur-when-you-update-the-statistics-of-a

SQL Server 更新统计信息出现严重错误,应放弃任何可能产生的结果的更多相关文章

  1. SQL SERVER的统计信息

    1 什么是统计信息     统计信息 描述了 表格或者索引视图中的某些列的值 的分布情况,属于数据库对象.根据统计信息,查询优化器就能评估查询过程中需要读取的行数及结果集情况,同时也能创建高质量的查询 ...

  2. Sql Server优化---统计信息维护策略

    本位出处:http://www.cnblogs.com/wy123/p/5748933.html 首先解释一个概念,统计信息是什么: 简单说就是对某些字段数据分布的一种描述,让SQL Server大概 ...

  3. SQL Server 中统计信息直方图中对于没有覆盖到谓词预估以及预估策略的变化(SQL2012-->SQL2014-->SQL2016)

    本位出处:http://www.cnblogs.com/wy123/p/6770258.html 统计信息写过几篇了相关的文章了,感觉还是不过瘾,关于统计信息的问题,最近又踩坑了,该问题虽然不算很常见 ...

  4. SQL Server 查找统计信息的采样时间与采样比例

    有时候我们会遇到,由于统计信息不准确导致优化器生成了一个错误的执行计划(或者这样表达:一个较差的执行计划),从而引起了系统性能问题.那么如果我们怀疑这个错误的执行计划是由于统计信息不准确引起的.那么我 ...

  5. SQL Server 等待统计信息基线收集

    背景 我们随时监控每个服务器不同时间段的wait statistics ,可以根据监控信息大概判断什么时候开始出现异常,相当于一个wait statistics基线收集,还可以具体分析占比高的等待类型 ...

  6. c#Winform程序调用app.config文件配置数据库连接字符串 SQL Server文章目录 浅谈SQL Server中统计对于查询的影响 有关索引的DMV SQL Server中的执行引擎入门 【译】表变量和临时表的比较 对于表列数据类型选择的一点思考 SQL Server复制入门(一)----复制简介 操作系统中的进程与线程

    c#Winform程序调用app.config文件配置数据库连接字符串 你新建winform项目的时候,会有一个app.config的配置文件,写在里面的<connectionStrings n ...

  7. SQL2008R2的 遍历所有表更新统计信息 和 索引重建

    [2.以下是更新统计信息] DECLARE UpdateStatisticsTables CURSOR READ_ONLY FOR SELECT sst.name, Schema_name(sst.s ...

  8. 为准确生成执行计划更新统计信息-analyze与dbms_stats

    如果我们想让CBO利用合理利用数据的统计信息,正确判断执行任何SQL查询时的最快途径,需要及时的使用analyze命令或者dbms_stats重新统计数据的统计信息. 例如索引跳跃式扫描(INDEX ...

  9. SQLServer 创建dtsx包更新统计信息(示例)

    http://blog.csdn.net/kk185800961/article/details/43816177(转载) 1 . 打开Microsoft Visual Studio 创建 integ ...

随机推荐

  1. [Swift]LeetCode457. 环形数组循环 | Circular Array Loop

    You are given an array of positive and negative integers. If a number n at an index is positive, the ...

  2. webdav 概览

    webdav 概览 WebDav(Web Distributed Authoring and Versioning) 是一个控制远端Web资源的协议,它基于HTTP1.1.它的定义在RFC 4918( ...

  3. java代码之美(2)---Java8 Stream

    Stream 第一次看到Stream表达式就深深把我吸引,用它可以使你的代码更加整洁而且对集合的操作效率也会大大提高,如果你还没有用到java8的Stream特性,那就说明你确实out啦. 一.概述 ...

  4. zabbix系列之十——添加短信告警

    zabbix添加短信告警 1.查看zabbix-server脚本存放路径: [root@GYQ-Prod-Zabbix ~]# grep AlertScriptsPath /etc/zabbix/za ...

  5. Javascript 链式操作以及流程控制

    春节过后,感觉过年吃的油腻的食品转化的脂肪都长到 脑子去了. 根本转不动啊 上班第一天 实在是写不动代码了, 顺手打开多天为看的 收件箱,查看查看邮件,看看春节期间 风云变幻的前端圈又有哪些大事发生. ...

  6. gradle插件从3.2.0升级到3.2.1后报错Error: Cannot create directory 项目目录\thirdlib\build\intermediates\packaged_res\debug\drawable

    报错信息如下:  解决方案: 删除thirdlib\build目录,然后重新编译. 但是紧接着又会报类似的错误,只不过build目录变成其他module的了. 所以,先clear build,然后再重 ...

  7. Lucene 04 - 学习使用Lucene的Field(字段)

    目录 1 Field的特性 2 常用的Field类型 3 常用的Field种类使用 3.1 准备环境 3.2 需求分析 3.3 修改代码 3.4 重新建立索引 1 Field的特性 Document( ...

  8. 带着萌新看springboot源码03

    上一节讲到了快速新建一个springboot应用,以及springboot的自动配置类起作用的时机,并且一起看了一个自动配置类的源码. 这一节我们来粗略看看当用户在浏览器输入一个url,怎么样返回一个 ...

  9. exec族函数详解及循环创建子进程

    前言:之前也知道exec族函数,但没有完全掌握,昨天又重新学习了一遍,基本完全掌握了,还有一些父子进程和循环创建子进程的问题,还要介绍一下环境变量,今天分享一下. 一.环境变量 先介绍下环境的概念和特 ...

  10. Java开发知识之Java控制语句

    Java开发知识之Java控制语句 一丶复合语句 不管任何语言都有控制语句 if else if else whie do  while  for .... 首先讲解的是java的复合语句 1.什么是 ...