encrypt or decrypt a column
-- Before encrypting decrypting make sure TDE is enabled in database. -- Encrypt a column
oracle configurationintermediate
by OracleDba
12 views
-- Before encrypting decrypting make sure TDE is enabled in database. -- Encrypt a column
12345678
-- Before encrypting decrypting make sure TDE is enabled in database.
-- Encrypt a column
alter table SCOTT.EMP modify ( emp_name encrypt);
alter table SCOTT.EMP modify ( emp_name encrypt using 'AES256');
-- Decrypt a column:
alter table SCOTT.EMP modify ( emp_name decrypt);
NOTE - This activity will take time, according to the table size and it might block other session.
Better to take downtime before doing this activity.Please to add comments
No comments yet. Be the first to comment!