文档解释 ORA-18110: XUTY0011 – Invalid replacement sequence for REPLACE Cause: In a REPLACE expression where VALU
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}}’);
--结束END--
本文标题: ORA-18110: XUTY0011 – Invalid replacement sequence for REPLACE ORACLE 报错 故障修复 远程处理
本文链接: https://lsjlt.com/news/530545.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0