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

本站中文解释

视图

Oracle视图DBA_TSDP_IMPORT_ERRORS用于查看Transparent Data Encryption (TDE)报错信息。它可用于查看Oracle数据库中导入数据加密表的导入错误信息。

视图的列信息如下:

TDE_DATATABLESPACE_NAME:表示加密表所在的数据表空间;
SCHEMA_NAME:该加密表属于哪个Schema;
TABLE_NAME:加密表的表名;
TDE_DATAFILE_NAME:加密表存放在哪个数据文件中;
ERROR_MESSAGE:如果无法导入,会有一个对应错误消息;
ERROR_TYPE:错误类型。

如何使用:

通过下面的查询,可以获取一个详细的错误报告:

SELECT:TDE_DATAFILESPACE_NAME,SCHEMA_NAME,TABLE_NAME,TDE_DATAFILE_NAME,ERROR_MESSAGE,ERROR_TYPE
FROM DBA_TSDP_IMPORT_ERRORS;

官方英文解释

DBA_TSDP_IMPORT_ERRORS shows information about the errors encountered during import of the Transparent Sensitive Data Protection discovery result.

This error information corresponds to the last import of the discovery result done using the DBMS_TSDP_MANAGE.IMPORT_DISCOVERY_RESULT API.

Column Datatype NULL Description

ERROR_CODE

NUMBER

NOT NULL

The ORA error code of the error encountered

SCHEMA_NAME

VARCHAR2(128)

The schema corresponding to the error

TABLE_NAME

VARCHAR2(128)

The table corresponding to the error

COLUMN_NAME

VARCHAR2(128)

The column corresponding to the error

SENSITIVE_TYPE

VARCHAR2(128)

The sensitive type corresponding to the error

See Also:

  • Oracle Database Security
    Guide
    for more information about using Transparent Sensitive Data Protection

  • Oracle Database PL/SQL
    Packages and Types Reference
    for more information about the DBMS_TSDP_MANAGE.IMPORT_DISCOVERY_RESULT procedure


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