各個Oracle 版本下如何調整高水位(HWM)
個人總結整理 , 轉載請註明出處。
以下沒有註明版本號的各版本都適用。
1.CTAS :
create table xxx_new
tablespace new_tablespace_name
storage (initial new_initial next new_next freelists new_freelist_number )
as
select * from xxx
order by primary_index_key_values;
Running CTAS in parallel can dramatically speed up table reorganization
create table vbap_sorted
tablespace vbap_copy
storage (initial 500m
next 50m
maxextents unlimited
)
parallel (degree 4)
as
select *
from
sapr3.vbap
order by
mandt,
vbeln,
posnr;
Using Oracle dbms_redefinition: The dbms_redefinition package allows you to copy a table (using CTAS), create a snapshot on the table, enqueue changes during the redefinition, and then re-synchronize the restructured table with the changes that have accumulated during reorganization.
exec dbms_redefinition.abort_redef_table('PUBS','TITLES','TITLES2');
alter table titles add constraint pk_titles primary key (title_id);
exec dbms_redefinition.can_redef_table('PUBS','TITLES');
create table titles2
as
select * from titles;
exec dbms_redefinition.start_redef_table('PUBS','TITLES','TITLES2','title_id title_id,title
title,type type,pub_id pub_id,price price,advance advance,royalty*1.1 royalty,ytd_sales
ytd_sales,notes notes,pubdate pubdate');
exec dbms_redefinition.sync_interim_table('PUBS','TITLES','TITLES2');
exec dbms_redefinition.finish_redef_table('PUBS','TITLES','TITLES2');
If your reorganization fails, you must take special steps to make it re-start. Because the
redefinition requires creating a snapshot, you must call dbms_redefinition.abort_redef_table to
release the snapshot to re-start you procedure.
The ‘dbms_redefinition.abort_redef_table’ procedure which accepts 3 parameters (schema, original table name, holding table name), and which “pops the stack” and allows you to start over.
http://blog.csdn.net/shongyu/archive/2007/06/29/1671611.aspx
2.EXP/IMP
太簡單,這個就不用說了,哪個版本都適用。
3.TABLE MOVE(9I)
alter table table_name move ...
aleter table move 只是給表中所有資料搬到新的儲存空間上,就相當於把A房間內亂七八糟的東西整理起來放到B房間裡面然後再把A房間讓出來給別人,這樣你不但讓出了整個A房間而且仍然只佔用一個房間,但是你的東西(資料)也整齊了可能只佔用B房間很少的一部分
也在同一表空間move——效果很好必須重建索引 , 可以直接在本tbs上. eg: alter table table_name move; 需要對index rebuild ;
4.SHRINK SPACE(10G)
alter table
alter table
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/35489/viewspace-84837/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- ORACLE 高水位線(HWM)Oracle
- Oracle案例10——HWM(高水位線)效能優化Oracle優化
- oracle高水位線處理Oracle
- oracle 高水位分析處理Oracle
- ORACLE 如何診斷高水位爭用(enq: HW – contention)OracleENQ
- 一、oracle 高水位線詳解Oracle
- ORACLE FREELIST HWM(轉)Oracle
- ORACLE資料庫降低高水位線方法Oracle資料庫
- jdk各個版本下載地址JDK
- pytorch各個版本的下載地址PyTorch
- Oracle 高水位查詢和處理方法彙總Oracle
- java高版本下各種JNDI Bypass方法復現Java
- oracle 線上調整redoOracle
- Oracle各種版本下“示例資料庫的建立”的建立Oracle資料庫
- windows下安裝各個版本memcache擴充套件Windows套件
- Oracle資料庫管理——表資料庫高水位及shrink操作Oracle資料庫
- .NET 調整圖片尺寸(Resize)各種方法
- ORACLE RAC+DG調整redo大小Oracle
- vmware workstation 各個版本百度網盤下載
- excel表格怎麼調整所有行高 表格如何快速設定行高Excel
- Oracle資料庫高水位釋放——LOB欄位空間釋放Oracle資料庫
- Python 調整Excel行高、列寬PythonExcel
- 關於高水位的知識
- Oracle Tuning (Oracle 效能調整)的一些總結(轉)Oracle
- 如何調整Pycharm字型大小PyCharm
- ChromeDriver高版本下載Chrome
- Oracle RAC+DG 調整redo/standby log fileOracle
- Oracle - 資料庫的記憶體調整Oracle資料庫記憶體
- 高dpi下,Vb.net調整控制元件位置的小經驗控制元件
- flink版本: 1.14.6 flink水位生成以及基於水位觸發視窗的計算
- Oracle Tuning (Oracle 效能調整)的一些總結(轉)2Oracle
- Oracle move和shrink釋放高水位空間Oracle
- PHP 各個版本新特性總結PHP
- elastcisearch中文分詞器各個版本AST中文分詞
- 各個軟體版本定義描述
- Linux各個版本相關說明Linux
- Linux哪個版本好?各個版本之間有什麼區別?Linux
- Oracle Freelist和HWM原理探討及相關效能優化(轉)Oracle優化
- VMware Workstation各個版本的註冊碼