Oracle 视图 V$LOCKDOWN_RULES 官方解释,作用,如何使用详细说明
本站中文解释
Oracle视图V$LOCKDOWN_RULES用以查看数据库安全威胁限制设置的信息。通过它可以确认数据库安全威胁限制是否正确配置,从而提高数据库安全性。
具体而言, V$LOCKDOWN_RULES视图提供如下信息:
1.当前已启用的安全威胁限制的类型(如检查共享内存段,禁用基于进程的安全,禁用环境变量,不允许运行操作系统命令等)
2.当前安全威胁限制规则生效级别
3.当前安全威胁限制规则的详细描述
V$LOCKDOWN_RULES视图可以使用常用的sql语句(如SELECT)从数据库中检索信息:
SQL statement:
SELECT rule_name,rule_action,rule_level, description
FROM v$lockdown_rules;
官方英文解释
V$LOCKDOWN_RULES
displays information about lockdown profile rules that are applicable in the pluggable database (PDB) where this view is queried.
Column | Datatype | Description |
---|---|---|
|
|
Type of the rule:
|
|
|
Rule to be enabled or disabled |
|
|
Clause of the statement |
|
|
Option of the clause |
|
|
Status of the lockdown profile:
|
|
|
Type of users affected by the rule:
|
|
|
The ID of the container to which the data pertains. Possible values include:
|
See Also:
Oracle Database Security
Guide for more information about PDB lockdown profiles