[Home] [Help]
[Dependency Information]
Object Name: | USER_ENCRYPTED_COLUMNS |
---|---|
Object Type: | VIEW |
Owner: | SYS |
Subobject Name: | |
Status: | VALID |
Encryption information on columns of tables owned by the user
Name | Datatype | Length | Mandatory | Comments |
---|---|---|---|---|
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 TABLE_NAME
, COLUMN_NAME
, ENCRYPTION_ALG
, SALT
, INTEGRITY_ALG
FROM SYS.USER_ENCRYPTED_COLUMNS;
|
|
|