Oracle 视图 ALL_CERTIFICATES 官方解释,作用,如何使用详细说明
本站中文解释
Oracle视图ALL_CERTIFICATES是一个数据字典视图,它提供了当前用户所拥有的X.509 证书的信息,包括证书类型、Issuer、Subject Name、 Serial Number 等信息。
要使用Oracle视图ALL_CERTIFICATES,首先需要配置相应的X.509 证书。如果你的当前用户有X.509 证书,那么查询ALL_CERTIFICATES视图就可以获取X.509 证书的相关信息。
查询示例:
SELECT * FROM ALL_CERTIFICATES;
官方英文解释
ALL_CERTIFICATES
displays the certificates accessible to the current user which are used for signature verification for blockchain tables.
Related Views
DBA_CERTIFICATES
displays all certificates in the database which are used for signature verification for blockchain tables.-
USER_CERTIFICATES
displays the certificates added by the current user which are used for signature verification for blockchain tables. This view does not display theUSER_NAME
column.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
|
ID for the certificate |
|
|
|
User who added the certificate |
|
|
|
Uniquely identifies the entity that owns the certificate |
|
|
|
Contents of the certificate |
Note:
This view is available starting with Oracle Database 21c.
See Also:
-
“DBA_CERTIFICATES”
-
“USER_CERTIFICATES”