Oracle 视图 V$ENCRYPTION_KEYS 官方解释,作用,如何使用详细说明
本站中文解释
V$ENCRYPTION_KEYS是一个视图,用于显示Oracle数据库中所有使用的加密密钥。它报告哪些密钥受保护,以及Oracle Database加密功能所使用的密钥。
使用V$ENCRYPTION_KEYS视图,可以查看当前使用的加密密钥,哪些加密密钥已启用,哪些未启用以及启用时间等。它还可以帮助DBA查看是否有自定义加密密钥被正确添加,以及是否已正确更新加密密钥。
要使用这个视图,您可以使用SELECT语句查看保存在V$ENCRYPTION_KEYS视图中的当前上下文中的所有加密密钥,如下所示:
SELECT * FROM V$ENCRYPTION_KEYS;
官方英文解释
V$ENCRYPTION_KEYS
displays master key description attributes.
Column | Datatype | Description |
---|---|---|
|
|
Master key identifier |
|
|
Master key identifier, in hex format |
|
|
Associated user-defined Information with the master key |
|
|
Time that the master key was created |
|
|
Time that the master key was put into use |
|
|
User that created the master key |
|
|
User ID that created the master key |
|
|
User that activated the master key |
|
|
User ID that activated the master key |
|
|
Indicates whether the master key is used for TDE operations in a PDB or not |
|
|
Master key is in:
|
|
|
Provides information about the origin of the master key:
|
|
|
Indicates whether the key has been backed up or not |
|
|
Database that created the key |
|
|
Database ID where the key was created |
|
|
Instance name of the instance where the key was created |
|
|
Instance number of the instance where the key was created |
|
|
Serial number of the instance where the key was created |
|
|
PDB where the key was created |
|
|
PDB ID where the key was created |
|
|
PDB UID where the key was created |
|
|
PDB GUID where the key was created |
|
|
Database that activated the key |
|
|
Database ID where the key was activated |
|
|
Instance name of the instance where the key was activated |
|
|
Instance number of the instance where the key was activated |
|
|
Serial number of the instance where the key was activated |
|
|
PDB where the key was activated |
|
|
PDB ID where the key was activated |
|
|
PDB UID where the key was activated |
|
|
PDB GUID where the key was activated |
|
|
The ID of the container to which the data pertains. Possible values include:
|
See Also:
Oracle Database Advanced
Security Guide for information about keystore management