Oracle 视图 V$ENCRYPTION_WALLET 官方解释,作用,如何使用详细说明
本站中文解释
V$ENCRYPTION_WALLET视图显示现有的Oracle Net服务中的Oracle访问钱包的信息。访问钱包在数据库实例中使用带有Oracle Advanced Security的技术,以用于加密传输。
Oracle提供了一种安全机制,称为访问钱包,它可以使用应用程序和数据库实例之间在网络上传输时保护密码。钱包存储受保护的信息,例如客户端的共享密钥,但仅暴露它们的加密形式。当程序或服务连接到数据库实例时,将使用这些凭证,使程序可以安全与数据库交互。
要检索V$ENCRYPTION_WALLET视图,必须从sys用户查询其查看权限。它返回一个含有一个字段的行,即wallet_status,它表示访问钱包的当前状态是否为Open或Close。
例:
SELECT * FROM V$ENCRYPTION_WALLET;
WALLET_STATUS
_____________
Open
官方英文解释
V$ENCRYPTION_WALLET
displays information on the status of the wallet and the wallet location for Transparent Data Encryption. In a multitenant container database (CDB), this view displays information on the wallets for all pluggable database (PDBs) when queried from CDB$ROOT
. When queried from a PDB, this view only displays wallet details of that PDB.
Column | Datatype | Description |
---|---|---|
|
|
Type of the wallet resource locator (for example, |
|
|
Parameter of the wallet resource locator (for example, absolute directory location of the wallet or keystore, if |
|
|
Status of the wallet. Possible values:
|
|
|
Displays the type of keystore being used, If the keystore was created with the |
|
|
Possible values:
The lookup of master keys happens in the primary keystore first, and then in the secondary keystore, if required. If there is only one type of keystore (Hardware Security Module or Software Keystore) being used, then If both types are used, then the value in this column shows the order in which each keystore will be looked up. |
|
|
Displays the keystore mode:
|
|
|
Indicates whether all the keys in the keystore have been backed up |
|
|
The ID of the container to which the data pertains. Possible values include:
|
See Also:
-
“TDE_CONFIGURATION”
-
“WALLET_ROOT”
-
Oracle Database Advanced
Security Guide for information about creating user-defined master encryption keys -
Oracle Database Advanced
Security Guide for information about opening hardware keystores