Oracle 视图 ALL_SEC_RELEVANT_COLS 官方解释,作用,如何使用详细说明
本站中文解释
Oracle视图 ALL_SEC_RELEVANT_COLS 表示 Oracle 数据库中所有的安全相关的列。这个视图能够帮助用户识别哪些列被用来表明表或视图的安全有关标记,以及它们的列属性。
该视图的使用示例如下:
SELECT table_name , column_name
FROM all_sec_relevant_cols
WHERE column_name = ‘SALARY’;
该语句会查询出表中 名称为 SALARY 的列的属性,包括它是否为安全有关标记列。
官方英文解释
ALL_SEC_RELEVANT_COLS
describes the security relevant columns of the security policies for the tables and views accessible to the current user.
Related Views
DBA_SEC_RELEVANT_COLS
describes the security relevant columns of all security policies in the database.USER_SEC_RELEVANT_COLS
describes the security relevant columns of the security policies for the tables and views owned by the current user. This view does not display theOBJECT_OWNER
column.
Column | Datatype | NULL | Description |
---|---|---|---|
|
| Owner of the table or view | |
|
| Name of the table or view | |
|
| Name of the policy group | |
|
| Name of the policy | |
|
| Name of the security relevant column | |
|
| Option of the security relevant column:
| |
|
| Indicates whether the policy security relevant column is applied and enforced in all application PDBs ( | |
|
| Indicates whether the policy security relevant column is inherited from the root ( |
See Also:
“DBA_SEC_RELEVANT_COLS”
“USER_SEC_RELEVANT_COLS”
标签:视图,标记,属性,它是,英文