---下面整理笔记来之 itpub 的各位前辈的语录。这里做了一个汇总。仅供学习。

truncate table后,oracle会回收表和其表中所在的索引到initial 大小,也就是初始分配的segments大小

truncate和drop一样都是ddl语句, 操作马上生效,原数据不放到rollback segment中,不能回滚

truncate table运行非常慢可能有下面几个原因:

首先要明确truncate table是DDL操作。会重置HWM。

1.查看是不是DML操作锁定了某些记录

2.segment header竞争

truncate 表慢可能跟extent的数量有关系

 比方说。你一个表 size 100M,每一个10M ,10个extent

而又一个表 size 50M ,每一个8K,6400个extent

那么,第二个表的truncate就会比第一个慢上好多

通常来说是因为extent 太多,truncate时在做回收extent的动作

这也是 local management比 dictionary management好的当中一点。

 假设操心下次碰到相同问题

 能够考虑使用

truncate table test reuse STORAGE 的语句,能够避免hung在回收extent上。

就要用到 分次回收 的方式了

 比方说。100M的表,每次回收 20M,在感觉上可能好点。

truncate table t4 reuse STORAGE ;

 alter table test_tun deallocate unused keep 80M;

 alter table test_tun deallocate unused keep 60M;

 alter table test_tun deallocate unused keep 40M;

 alter table test_tun deallocate unused keep 20M;

 truncate table test_tun  drop storage;

假设truncate table 很慢 ,能够依照下面方法来诊断:

1.请查询 对应的session 在 v$session_wait 视图中的等待事件

2.能够用oradebug hanganalyze分析系统挂起的原因

3.假设为了试验目的。更能够做个10046 level 8的event

###################

### BUG lists

###################

truncate的时候,dbwr占用cpu高不高?能够试一下以下文档中的workround (alter system flush buffer_cache; 后再truncate),假设生效应该就是了。你能够升到10.2.0.4.3

是不是这个bug不好说,假设日志的大小不足导致日志切换hang住,引起dbwr的等待,出现不少free buffer busy的等待,而truncate又要做checkpoint,所以这时候前台进程也要等待dbwr,导致enqueue RO的wait变长

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

 Bug 8544896  Waits for "enq: RO - fast object reuse" with high DBWR CPU

 This note gives a brief overview of bug 8544896.

 The content was last updated on: 08-JAN-2010

 Click here for details of each of the sections below.

Affects:

 Product (Component) Oracle Server (Rdbms)

 Range of versions believed to be affected Versions >= 10.2.0.4 

 Versions confirmed as being affected 10.2.0.4

Platforms affected Generic (all / most platforms affected)

It is believed to be a regression in default behaviour thus:

    Regression introduced in 10.2.0.4

Fixed:

 This issue is fixed in 10.2.0.4.3 (Patch Set Update)

Symptoms: Related To:

 Performance Affected (General)

 Performance Of Certain Operations Affected

 Waits for "enq: RO - fast object reuse"

 Truncate

 _DB_FAST_OBJ_TRUNCATE

Description

 This problem is introduced in 10.2.0.4.

Sessions can wait on "enq: RO - fast object reuse" while DBWR consumes

 lots of CPU when performing truncate type operations.

Workaround

 Flush the buffer cache before truncating

 OR

 set _db_fast_obj_truncate = FALSE.

 Please note: The above is a summary description only. Actual symptoms can vary. Matching to any symptoms here does not confirm that you are encountering this problem. Always consult with Oracle Support for advice.

References

 Bug:8544896 (This link will only work for PUBLISHED bugs)

 Note:245840.1 Information on the sections in this article

关于 truncate table 的一点学习札记的更多相关文章

  1. MySQL学习笔记:delete from与truncate table的区别

    在Mysql数据库的使用过程中,删除表数据可以通过以下2种方式: delete from table_name truncate table table_name (1)delete from语句可以 ...

  2. MySQL DELETE语句和TRUNCATE TABLE语句的区别

    MySQL DELETE语句和TRUNCATE TABLE语句的区别 2010-10-08 16:05 佚名 互联网 字号:T | T 在MySQL数据库中,DELETE语句和TRUNCATE TAB ...

  3. SQL菜鸟学习札记(二)

    五月份一直在写SQL,之后写了一个期末大作业的项目,现在才有时间把之前遇到的各种奇怪的问题整理出来.下一部分札记应该是大作业中使用到的SQL的整理. 一.UPDATE SET语句后面可以并列赋值. 之 ...

  4. [20180630]truncate table的另类恢复2.txt

    [20180630]truncate table的另类恢复2.txt --//上个星期做了truncate table的另类恢复,通过修改数据块的段号,再通过rowid定位收集数据,达到修复的目的.- ...

  5. [20180627]truncate table的另类恢复.txt

    [20180627]truncate table的另类恢复.txt --//前几天看链接http://www.xifenfei.com/2018/06/truncate-table-recovery. ...

  6. mysql 删除表记录 delete和truncate table区别

    MySQL中删除表记录delete from和truncate table的用法区别: mysql中有两种删除表中记录的方法: (1)delete from语句, (2)truncate table语 ...

  7. SQL Server 2008 R2——TRUNCATE TABLE 无法截断表 该表正由 FOREIGN KEY 约束引用

    =================================版权声明================================= 版权声明:原创文章 禁止转载  请通过右侧公告中的“联系邮 ...

  8. SQLite - TRUNCATE TABLE

    https://www.tutorialspoint.com/sqlite/sqlite_truncate_table.htm Unfortunately, no TRUNCATE TABLE in ...

  9. TRUNCATE TABLE (Transact-SQL)

    删除表中的所有行,而不记录单个行删除操作. TRUNCATE TABLE 与没有 WHERE 子句的 DELETE 语句类似:但是,TRUNCATE TABLE 速度更快,使用的系统资源和事务日志资源 ...

随机推荐

  1. ecmascript6入门

    ECMAScript 6 入门  阮一峰

  2. iOS学习笔记17-FMDB

    上一节我已经介绍了SQLite的简单使用,不了解的可以提前去看一下iOS学习笔记16-数据库SQLite,这节我们来讲下FMDB. 一.FMDB介绍 FMDB是一种第三方的开源库,FMDB就是对SQL ...

  3. 【bzoj1532】[POI2005]Kos-Dicing 二分+网络流最大流

    题目描述 Dicing 是一个两人玩的游戏,这个游戏在Byteotia非常流行. 甚至人们专门成立了这个游戏的一个俱乐部. 俱乐部的人时常在一起玩这个游戏然后评选出玩得最好的人.现在有一个非常不走运的 ...

  4. Wing IDE 6.0 算号器注册机代码

    我开发Python时喜欢用Wing IDE, 然后最近发现Wing IDE升级到6.0版本了, 但是之前能在5.1上用的算号器代码不能用在6.0上了, 所以就上网搜搜是否有相关算号器, 果然, 找到了 ...

  5. 解决mybatis xml文件代码提示

    今天在开源项目社区看到一个插件挺不错的,推荐给大家.叫MyBatis MyBatis 是一个流行的 Java 数据持久层框架.MyBatipse 是一个 Eclipse 插件,在编辑 MyBatis ...

  6. asp.net在IE10下事件丢失排错经过

    下午看一篇文章,感觉对以后自己开发有点用途,摘抄下来. 原文出处:http://www.cnblogs.com/weapon/archive/2013/06/23/3150584.html 最近项目中 ...

  7. android获取手机号

    private String getPhoneNum(){ //与手机建立连接 TelephonyManager tm = (TelephonyManager)getSystemService(Con ...

  8. js判断手机的横竖屏调整样式

    在移动端,我们经常遇到横竖屏的问题,所以我们改如何判断或针对横竖屏来写代码呢.首先需要在head中加入如下代码: <meta name="viewport" content= ...

  9. ros使用罗技f710无线控制手柄

    参考:blog.csdn.net/hcx25909/article/details/9042469 罗技F710无线控制手柄ROS下使用说明 安装手柄相关的包和驱动 sudo apt-get inst ...

  10. java集合系列之LinkedList源码分析

    java集合系列之LinkedList源码分析 LinkedList数据结构简介 LinkedList底层是通过双端双向链表实现的,其基本数据结构如下,每一个节点类为Node对象,每个Node节点包含 ...