[oracle@PD009 ~]$ oerr ora 257 00257, 00000, "Archiver error. Connect AS SYSDBA only until resolved."// *Cause: The archiver process received an error while trying to archive // a redo log. If the problem is not resolved soon, the database // will stop executing...
10、 删除与Oracle有关的文件,选择Oracle所在的缺省目录C:\Oracle,删 除这个入口目录及所有子目录,并从C:\WINDOWS下删除以下文件ORACLE.INI、 oradim73.INI、oradim80.INI、oraodbc.ini等等。参考资料:http://hi.baidu.com/marrensy/blog/item/b97b560c41b34cf009fa9371.html 很多朋友只用了oracl...
[oracle@PD009 ~]$ oerr ora 31011 31011, 00000, "XML parsing failed"// *Cause: XML parser returned an error while trying to parse the document.// *Action: Check if the document to be parsed is valid.解析XML 失败错误,具体诊断其正在解析的XML askmaclean oracle ...
[oracle@PD009 ~]$ oerr ora 22813 22813, 00000, "operand value exceeds system limits"// *Cause: Object or Collection value was too large. The size of the value // might have exceeded 30k in a SORT context, or the size might be // too big for available memory./...
如果要退出command窗口可以输入exit,回车。你的存储过程当然有错了,你只申明了两个变量,还没有为变量赋值,调用的时候传入的参数是默认值,number是0,varchar是null,即使参数没有错误也不会有正确的返回结果, 在调用存储过程之前要为变量赋值。一个end对应一个begin或if,while 等 对...