2012年(101)
分类: Oracle
2012-06-12 17:20:40
[oracle@health java]$ loadjava -u monitor/go2north -v -resolve test.java
arguments: '-u' 'monitor/***' '-v' '-resolve' 'test.java'
creating : source test
loading : source test
Error while creating source test
ORA-29533: attempt to overwrite class or resource test while defining or compiling MONITOR.test
ORA-06512: at line 1
The following operations failed
source test: creation (createFailed)
exiting : Failures occurred during processing
ORA-29533: attempt to overwrite class or resource test while defining or compiling MONITOR.test
说明:该语句指明不能重写类 test.
解决办法:
使用dropjava删除test类即可。
[oracle@health java]$ dropjava -u monitor/go2north test
[oracle@health java]$