[Home] [Help]
[Dependency Information]
Object Name: | DBA_ENCRYPTED_COLUMNS |
---|---|
Object Type: | VIEW |
Owner: | SYS |
Subobject Name: | |
Status: | VALID |
Encryption information on columns in the database
Name | Datatype | Length | Mandatory | Comments |
---|---|---|---|---|
OWNER | VARCHAR2 | (128) | Yes | Owner of the table |
TABLE_NAME | VARCHAR2 | (128) | Yes | Name of the table |
COLUMN_NAME | VARCHAR2 | (128) | Yes | Name of the column |
ENCRYPTION_ALG | VARCHAR2 | (29) | Encryption algorithm used for the column | |
SALT | VARCHAR2 | (3) | Is this column encrypted with salt? YES or NO | |
INTEGRITY_ALG | VARCHAR2 | (12) | Integrity algorithm used for the column |
Cut, paste (and edit) the following text to query this object:
SELECT OWNER
, TABLE_NAME
, COLUMN_NAME
, ENCRYPTION_ALG
, SALT
, INTEGRITY_ALG
FROM SYS.DBA_ENCRYPTED_COLUMNS;
|
|
|