select * from all_encrypted_columns;
alter table sh.encb rekey using 'AES256';
※列単位にアルゴリズムは指定不可。表のすべての暗号化列は、同じ暗号化アルゴリズムを使用する必要がある
create table sh.encd(
col1 number encrypt using 'AES256',
col2 number encrypt using '3des168'
);
ORA-28340: 表または表領域に、別の暗号化アルゴリズムが選択されています。