lob字段空间大小收缩

移动表空间。

select 'alter table  '||a.owner||'.'||a.table_name||' move lob('||a.COLUMN_NAME||') store as (tablespace wf_data_tbs);'

from dba_lobs a,DBA_SEGMENTS b where a.owner in ('NWOM','WORKFLOW')

and a.OWNER=b.OWNER and a.SEGMENT_NAME=b.SEGMENT_NAME and b.TABLESPACE_NAME!='WF_DATA_TBS'


收缩表空间



相关文章:

  • 2022-12-23
  • 2021-12-29
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-10-21
  • 2022-12-23
  • 2022-02-16
  • 2022-12-23
  • 2021-07-11
  • 2022-12-23
  • 2021-12-22
相关资源
相似解决方案