Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
テーブルを圧縮する必要があります。以前alter table tablename compressはテーブルを圧縮していました。これを行った後、テーブルのサイズは同じままでした。
alter table tablename compress
テーブルをどのように圧縮すればよいですか?
テーブルの古いブロックを圧縮するには、次を使用します。
alter table table_name move compress;
これにより、レコードが別のブロックに再挿入され、圧縮され、古いブロックが破棄されるため、スペースが確保されます。また、indexex が無効になるため、再構築する必要があります。