您的位置:首页 > 数据库

Scripts:显示有LOB列的表的脚本(慎用)LobData.sql

2014-05-29 10:58 721 查看
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"

select l.table_name, l.column_name, l.tablespace_name, l.pctversion, 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
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: