Oracle 视图 DBA_SENSITIVE_COLUMN_TYPES 官方解释,作用,如何使用详细说明

本站中文解释

Oracle视图DBA_SENSITIVE_COLUMN_TYPES用于查询敏感列类型。该视图显示每个表/列名称以及敏感性等级。列的敏感性等级有四个:低,中,高和无。

该视图用于帮助管理数据库表中的敏感数据,例如信用卡号、密码,用户密钥等。 我们可以使用以下SQL语句查询有哪些表和列具有高敏感性:

SELECT table_name, column_name, security_level
FROM dba_sensitive_column_types
WHERE security_level=’HIGH’;

官方英文解释

DBA_SENSITIVE_COLUMN_TYPES describes sensitive column types in the database.

Column Datatype NULL Description

NAME

VARCHAR2(128)

The name of the sensitive column type

USER_COMMENT

VARCHAR2(4000)

User comment on the sensitive column type

SOURCE_NAME

VARCHAR2(128)

The name of the discovery source for the sensitive column type

SOURCE_TYPE

VARCHAR2(3)

The type of the discovery source:

  • ADM: import from ADM

  • DB: added within the database

See Also:

Oracle Database Security
Guide
for more information about transparent sensitive data protection


数据运维技术 » Oracle 视图 DBA_SENSITIVE_COLUMN_TYPES 官方解释,作用,如何使用详细说明