![]() Previous |
![]() Next |
To check all encrypted table columns, you use the DBA_ENCRYPTED_COLUMNS view.
To check all encrypted table columns in the current database instance:
In SQL*Plus, select from the DBA_ENCRYPTED_COLUMNS view:
For example:
SELECT * FROM DBA_ENCRYPTED_COLUMNS;
This SELECT statement lists all tables and column in the database that contain columns encrypted using Oracle Transparent Data Encryption. For example:
OWNER TABLE_NAME COLUMN_NAME ENCRYPTION_ALG SALT ----------- ---------- ----------- ---------------- ---- OE CUSTOMERS INCOME_LEVEL AES 128 bits key YES OE UNIT_PRICE ORADER_ITEMS AES 128 bits key YES HR EMPLOYEES SALARY AES 192 bits key YES
About Encrypting Sensitive Data
How Transparent Data Encryption Works
Oracle Database Reference for more information on the DBA_ENCRYPTED_COLUMNS view