根据metalink脚本学习undo(八)

LOB算是一个比较特殊的数据类型,

其UNDO 机制不依赖于UNDO 表空间,而依赖于其所在表空间,这也是考虑到BLOB 使用率比较低,但是所占空间都比较大。



REM   List table and column information for LOBs for a specific user
REM   
REM   UNDO handling with LOBs is not designed for frequent updates
REM   Frequent updates are best handled with PCTVERSION at 100
REM   This means you must have a lot of space available in the LOB
REM     tablespace as all UNDO will be maintained over time.
REM  
REM   Using RETENTION does not work as expected
REM   It is set to UNDO_RETENTION at the time of the creation of the
REM   object.   It does not change over time as UNDO_RETENTION
REM   or auto-tuned undo retention changes.

set pages 999
set lines 110

spool lobdata.out

col column_name format a25 head "Column"
col table_name format a25 head "Table"
col tablespace_name format a25 head "Tablespace"
col pctversion format 999 head "PCTVersion %"
col segment_space_management format a30 head "Space|Mngmnt"
col retention format 999,999,999 head "Retention"
--此脚本输出某个用户下的lob,及相应与回滚相关的设置
select l.table_name,   --表名
       l.column_name,  --列名 
       l.tablespace_name,  --表空间名称
       l.pctversion,       --声明旧数据可用占比 ,lob undo机制依靠自身所在表空间
       l.retention,        --旧数据最大保留时间
       t.segment_space_management
  from dba_lobs l, dba_tablespaces t
 where owner = upper('&USER')
   and l.tablespace_name = t.tablespace_name
/

spool off

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值