ORA-28379: a different integrity algorithm has been chosen for the table
Cause: Encrypted columns were associated with a different algorithm.
Action: You do not need to specify an algorithm, or specify the same one for the existing encrypted columns.
ORA-28379是Oracle数据库中一个常见的错误,表明在创建或者修改表时必须用到不同的完整性算法。
1.在表定义中检查是否存在完整性算法差异。
2.创建一个临时表,用于存储表中的数据,以便删除现有表并重新创建新表,以匹配已成功创建或修改表所需的算法完整性。
3.如果要求创建索引,请确保临时表中具有任何所要求的索引,并确保在插入原表的数据之前重建索引。
4.将临时表中的数据插入到新建的正确完整性算法表中。
5.清理或删除临时表,以确保后续操作不受其影响。