ORACLE导出数据 exp-00056:遇到oracle错误 3113

导出数据时遇到以下错误:
先谢谢各位

"未初始化服务句柄"往往是由于windows 控制面板中"服务"中的 oracleService 停止了所致.看看是否 oracleService 被停止了.启动该 service 及数据库再试试看.(有时为启动service 的同时自动启动了数据库. ), 停止oracleService 时, 自动终止了数据库的运行,因而, 客户端程序便遇到ora-3113了.
若service 未停止, 且数据库也未停止, 可以通过sqlplus 连接数据库,则需要看 alert_xxx.log 中当时报的是什么错, 把错误信息贴上来, 帮你分析.
温馨提示:答案为网友推荐,仅供参考
第1个回答  2010-10-08
简单的说,就是你的客户端连接和服务器被断开了, 这个是3113的官方解释

03113, 00000, "end-of-file on communication channel"
// *Cause: The connection between Client and Server process was broken.
// *Action: There was a communication error that requires further investigation.
// First, check for network problems and review the SQL*Net setup.
// Also, look in the alert.log file for any errors. Finally, test to
// see whether the server process is dead and whether a trace file
// was generated at failure time.

翻译以下
1 检查有没有网络问题
2 检查alert log看报了什么错误
3 看看服务进程是不是死掉了,有没有trace file 生成出来。
相似回答