ORA-29514: class name contains illegal character
Cause: An attempt was made to import a .class file containing a character that cannot be converted to the server character set. The .class file could not be imported because of the illegal character.
Action: Correct the illegal character in the .class file.
ORA-29514是由于类名中含有非法字符而引发的Oracle错误。
Oracle错误代码ORA-29514的官方解释如下:
ORA-29514:对象type类型class名称name包含了非法字符。
此错误消息指示您尝试创建或更改的对象(如类、表空间等)的名称(name)中含有非法字符。
在尝试创建另一个表空间或删除分区表的时候可能会发生ORA-29514的错误,因为可能存在表空间名称中存在非法字符,如空格、反斜杠()和半角引号(')等。
1. 确认新创建对象(表空间、类、序列或函数等)的名称(name)不能包含特殊字符(空格、反斜杠()和半角引号(’)等),否则会出现ORA-29514错误;
2. 将包含非法字符的表空间名称更改成正确的名称。
3. 重新提交操作即可。