ORA-18110: XUTY0011 – Invalid replacement sequence for REPLACE
Cause: In a REPLACE expression where VALUE OF was not specified and the target is an attribute node, the replacement sequence did not consist of zero or more attribute nodes.
Action: None
ORA-18110:XUTY0011 错误指出无效的替换序列,其指的是REPLACE 的第二个参数,该参数必须以字符来组成。
ORA-18110:XUTY0011: invalid replacement sequence for REPLACE
指定给 REPLACE 函数的第二个参数 (replacement_string) 不是一个有效的替换序列。第二个参数必须由字符组成。
例 1:
假设现在我们有一个以下的SQL语句,
SELECT REPLACE(‘This is a test sentence’,’ is a 1′);
在上例中,第二个参数’ is a 1′ 中的 1 是数字类型,这将会导致 ORA-18110: XUTY0011 错误。
1. 把第二个参数替换成字符串,如下:
SELECT REPLACE(‘This is a test sentence’,’ is a ‘,’one’);
2. 使用字符转义来替换特殊字符,如下:
SELECT REPLACE(‘This is a test sentence’,’ is a ‘,'{{one}}’);