{データベースの作成その他}テーブルを圧縮

 


https://docs.oracle.com/cd/F19136_01/admin/managing-tables.html#GUID-34D15DD1-0925-4C9A-BE8A-3EE91671E526


drop table tab1 purge;
drop table tab2 purge;

create table tab1(col1 number);
create table tab2(col1 number);


alter table tab1 row store compress basic;
alter table tab2 row store compress advanced;

select owner,table_name,blocks,compress_for from dba_tables
where table_name like 'TAB%';