ORA-28085: The input and output lengths of the redaction do not match.

文档解释

ORA-28085: The input and output lengths of the redaction do not match.

Cause: As specified, the redaction parameters produced an output with a length different to that of the input.

Action: Use regular expression redaction instead of partial redaction.

ORA-28085:修改操作的输入和输出长度不匹配。

官方解释

ORA-28085: 表示输入和输出长度不匹配,SQL 函数 DBMS_REDACT.REDACT 无法正确执行。

常见案例

此错误常见于使用 DBMS_REDACT 函数时输入参数和返回结果长度不一致,比如内容长度发生变化,使输出内容长度和原始输入内容长度不一致。

一般处理方法及步骤

1、在使用 DBMS_REDACT 函数之前,应对输入内容进行长度检查,使其长度与输出长度匹配;

2、此外,也可以使用自定义函数来执行文本数据的修改并确保输入和输出长度的一致性。

你可能感兴趣的