ORA-01034错误处理
今天在通过exp导出oracle数据库数据时,通过下面的步骤进行导出时,发现有报错误:
1C:\Documents and Settings\Administrator>set oracle_sid=mycms
2C:\Documents and Settings\Administrator>exp
3Export: Release 10.2.0.1.0 - Production on 星期二 12月 4 10:35:26 2012
4Copyright (c) 1982, 2005, Oracle. All rights reserved.
5用户名: test
6口令:
具体错误信息如下:
1EXP-00056: 遇到 ORACLE 错误 1034
2ORA-01034: ORACLE not available
3ORA-27101: shared memory realm does not exist
4EXP-00005: 所有允许的登录尝试均失败
5EXP-00000: 导出终止失败
我突然想起来,这个应用停有一段时间了,是不是有可能数据也停掉了。通过conn /as sysdba连接查看,发现确实是因为没有启动造成的。
1C:\Documents and Settings\Administrator>set oracle_sid=mycms
2C:\Documents and Settings\Administrator>sqlplus /nolog
3SQL*Plus: Release 10.2.0.1.0 - Production on 星期二 12月 4 10:36:04 2012
4Copyright (c) 1982, 2005, Oracle. All rights reserved.
5SQL> conn /as sysdba;
6已连接到空闲例程。
7SQL> startup;
8ORACLE 例程已经启动。
9Total System Global Area 612368384 bytes
10Fixed Size 1250428 bytes
11Variable Size 100666244 bytes
12Database Buffers 503316480 bytes
13Redo Buffers 7135232 bytes
14数据库装载完毕。
15数据库已经打开。
接下来再试下exp导出
1C:\Documents and Settings\Administrator>set oracle_sid=mycms
2C:\Documents and Settings\Administrator>exp
3Export: Release 10.2.0.1.0 - Production on 星期二 12月 4 10:39:15 2012
4Copyright (c) 1982, 2005, Oracle. All rights reserved.
5用户名: test
6口令:
7连接到: Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
8With the Partitioning, OLAP and Data Mining options
9输入数组提取缓冲区大小: 4096 >
10 导出文件: EXPDAT.DMP > e:/mycms.dmp
11(2)U(用户), 或 (3)T(表): (2)U >
12导出权限 (yes/no): yes >
13导出表数据 (yes/no): yes >
14压缩区 (yes/no): yes >
最终成功导出:
正在导出同义词
正在导出视图
正在导出存储过程
正在导出运算符
正在导出引用完整性约束条件
正在导出触发器
正在导出索引类型
正在导出位图, 功能性索引和可扩展索引
正在导出后期表活动
正在导出实体化视图
正在导出快照日志
正在导出作业队列
正在导出刷新组和子组
正在导出维
正在导出 post-schema 过程对象和操作
正在导出统计信息
成功终止导出, 没有出现警告。
捐赠本站(Donate)
如您感觉文章有用,可扫码捐赠本站!(If the article useful, you can scan the QR code to donate))
- Author: shisekong
- Link: https://blog.361way.com/ora-01034/2048.html
- License: This work is under a 知识共享署名-非商业性使用-禁止演绎 4.0 国际许可协议. Kindly fulfill the requirements of the aforementioned License when adapting or creating a derivative of this work.