Performing Cryptographic Operations on Existing Tablespaces
This chapter covers the steps to encrypt and decrypt the existing online and offline tablespaces. It also covers how to perform rekey operation on the existing online tablespaces.
This chapter covers the following topics:
Overview
Tablespaces are the logical storage units which stores all data of a database. Tablespaces can be either online or offline when the database is open. Online tablespaces means that the data is available for the users.
Database administrator can make the tablespace offline for maintenance or backup purpose.
Note
Encryption, decryption, and rekeying of existing tablespaces is only supported from Oracle version 12.2.0.1 onwards.
Prior to performing following procedures, ensure that HSM is already configured and wallet is open.
Encrypting Existing Offline Tablespaces
Note
This feature is supported from Oracle TDE 12.2.0.1 onwards.
To encrypt the existing offline tablespaces:
Create a tablespace.
Make the tablespace offline.
Encrypt the tablespace.
Note
For Oracle version 19c, you can specify desired keysize in this step. Supported keysizes are AES192 and AES256. For example:
ALTER TABLESPACE ENCRYPTED_SPACE ENCRYPTION OFFLINE USING 'AES256' ENCRYPT;
Take the tablespace online again.
Decrypting Existing Offline Tablespaces
Note
This feature is supported from Oracle TDE 12.2.0.1 onwards.
To decrypt the existing offline tablespaces:
Take the tablespace that has been previously encrypted and make the tablespace offline.
Decrypt the tablespace.
Take the tablespace online again.
Encrypting Existing Online Tablespaces
Note
This feature is supported from Oracle TDE 12.2.0.1 onwards.
To encrypt the existing online tablespaces:
Connect to the database as a user who has
SYSDBA
administrative privilege.
For example:sqlplus sec_admin as sysdba Enter Password: password
Note
If you plan to encrypt the SYSTEM and SYSAUX tablespaces, you must have the
SYSDBS
administrative rights.Make sure that the COMPATIBLE initialization parameter is set to the Oracle version installed on your machine. Use the
SHOW PARAMETER
command to check the current setting of the initialization parameter.If the database is open, ensure that it is open in the read-write mode, else open it in read-write mode.
Note
You can query the
STATUS
column of theV$INSTANCE
dynamic view to find if a database is open and theOPEN_MODE
column of theV$DATABASE
view to find if it is in read-write mode.Ensure that the auxiliary space is at least the same size as the largest datafile of this tablespace. For example, if the size of the largest datafile of the tablespace is 32 GB, make sure that the auxiliary space is also allocated a space ≥ 32 GB.
Note
The size restriction of the auxiliary space is defined to cater the database requirement. To find the space used by the datafile, query the
BYTES
orBLOCKS
column of theV$DATAFILE
dynamics performance view.Create a tablespace.
Create a table
CUSTOMERS
, and insert values in it.Encrypt the tablespace.
Note
At this step, you might encounter an error-
ORA-00241: operation disallowed: control file is not yet checked against data dictionary
As a workaround to this problem, shutdown and restart the database, and then execute this command:ALTER TABLESPACE ENCRYPT_SPACE ENCRYPTION ONLINE FINISH ENCRYPT FILE_NAME_CONVERT = ('encspace.dbf', 'encspace_ enc.dbf');
Decrypting Existing Online Tablespaces
Note
This feature is supported from Oracle TDE 12.2.0.1 onwards.
To decrypt the existing online tablespaces, take a tablespace that has been previously encrypted and run the following statement.
Rekeying Existing Online Tablespaces
Note
This feature is supported from Oracle TDE 12.2.0.1 onwards.
Rekeying operation on existing online tablespaces is performed based on the status returned by V$ENCRYPTED_TABLESPACES
dynamic view. There can be two cases:
If the key version status of the tablespace is normal:
Specify the new algorithm to perform
REKEY
operation. For example:If the key version status of the tablespace is encrypting, decrypting, or rekeying
Use the
FINISH
clause. For example: