Transparent Data Encryption in Oracle
Transparent Data Encryption (TDE) in Oracle is a security feature designed to protect data at rest by encrypting database files. It ensures that data is
oracle configurationintermediate
by OracleDba
38 views
Transparent Data Encryption (TDE) in Oracle is a security feature designed to protect data at rest by encrypting database files. It ensures that data is
123456789101112131415161718192021
mkdir
/
u01
/
app
/
oracle
/
admin
/
orcl
/
wallet
ENCRYPTION_WALLET_LOCATION =
(SOURCE =
(METHOD = FILE)
(METHOD_DATA =
(DIRECTORY = /u01/app/oracle/admin/orcl/wallet)
)
)12345678
SQL
>
ALTER
SYSTEM
SET
ENCRYPTION KEY IDENTIFIED
BY
"your_wallet_password";12345678
SQL> select * from v$encryption_wallet;
WRL_TYPE WRL_PARAMETER STATUS
---------- ------------------------------ -----------
file /u01/app/oracle/orcl/wallet OPEN
SQL> create table test(col1 number, col2 varchar2(100) encrypt using 'AES256' NO SALT) ;
SQL> alter table test modify( col2 encrypt SALT ) ;1
SQL> create tablespace encryptedtbs datafile '/u01/app/oracle/orcl/wallet/encryptedtbs01.dbf' size 100M encryption using 'AES256' default storage(encrypt) ;Please to add comments
No comments yet. Be the first to comment!