day05
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了day05相关的知识,希望对你有一定的参考价值。
undo 表空间管理
只要修改了数据块,oracle 数据库就会将修改前的数据保留下来,保存在undo segment 里,undo segment 保存在undo表空间里。
两种Undo的管理方式
manual undo management MUM
automatic Undo management AUM
undo 的三大作用:提供一致性读 consistent read 、回滚事务 rollback Transaction 、实例恢复 instance recovery
CR块 consistent Read
AUM 的配置
在AUM 下只需要创建undo 表空间,并指定初始化参数,该参数说明数据库当前使用哪个undo 表空间,剩下的工作由数据库自动完成。
show parameter undo_nanagment
创建undo 表空间
create undo tablespace undonew datafile ‘‘ size 10m autoextend on;
alter system set undo_tablespace=‘undonew‘
undo_relation 四个状态
extent active inactive free
管理undo 表空间
alter tablespace undonew add datafile ‘‘ size 10m autoextend on;
以上是关于day05的主要内容,如果未能解决你的问题,请参考以下文章