设为首页  
联系我们  
加入收藏  
网页制作 冲浪宝典 图形图像 操作系统 软件教学 编程开发 认证考试 安全技术 站长专区 文学驿站 娱乐天地 游戏天地 办公软件
文章搜索
您的位置: 首页 >> 文章首页 >> 编程开发 >> 数据库开发 >> ORA-00257: archiver error. Connect internal only, until freed.
精品推荐
数据库开发点击TOP10
·MYSQL 新版出现 Client does not support authentication protocol requested by server; consider upgrading MySQL client解决办法
·生成助记码(取汉字的第一个字母)
·ORA-01034错误的解决办法
·ORACLE数据库管理员的职责
·将DW数据窗口导出为EXCEL文件的方法(整理)
·Oracle中分区表的使用
·SQL Server 2000+ MS WIN2003群集服务配置
·SQL中UNION 与 UNION ALL 的区别
·ORA-00257: archiver error. Connect internal only, until freed.
·Oracle备份与恢复案例
编程开发点击TOP10
·数字小键盘指法练习
·ASP.NET 程序中常用的三十三种代码
·用C语言编通讯录程序(初学者级别的)
·我写的Java学生成绩管理系统源代码
·CHK文件恢复工具
·Modem 常用AT指令集
·java笔试题
·异常java.sql.SQLException: Io exception:The Network Adapter could not establish connection
·单片机模拟I2C总线及24C02(I2C EEPROM)读写实例(源代码)
·C++经典电子书下载
精选专题

ORA-00257: archiver error. Connect internal only, until freed.

作者: 来源:网络文章 时间:2005-12-17 21:03:39

ORA-00257: archiver error. Connect internal only, until freed.(2)        13         5 SCOTT
       14        15 SCOTT
       15         4
       16         1
       17         1
       18         1
       19         1
       20         4 NCCWGS

已选择20行。

已用时间:  00: 00: 00.01
SQL> alter system kill session '13,5';

系统已更改。

已用时间:  00: 00: 00.00
SQL>

重复上面步骤大概3次后,
SQL> conn scott/tiger@pgjt
ERROR:
ORA-00257: archiver error. Connect internal only, until freed.

无法连接数据库。

二、Problem Description ------------------- 

The database is running in archive log mode with automatic archiving turned on. When the archive log destination diskspace becomes full the automatic archiving will stop.  This is expected to happen.  At this point a message should appear  on the screen:  ORACLE Instance v816 - Can not allocate log, archival required  When all of the online redo logs are filled up, the database will be in a hang  state.  After freeing up diskspace the online redo logs are still not archiving.  In  most cases this is the CORRECT behaviour. 

If you attempt to manually archive the files you may receive the following errors: 

SVRMGR> archive log next ORA-16014: log 1 sequence# 199 not archived, no available destinations ORA-00312: online log 1 thread 1: 'C:ORACLEORADATAV816REDO01.LOG' 

SVRMGR> archive log all ORA-16020: less destinations available than specified by LOG_ARCHIVE_MIN_SUCCEED_DEST  

Solution Description -------------------- 

Some of the possible ways to fix this problem: 

1.  Use the command:     

  alter system archive log all to 'c:oracleoradatav816archive';        *NOTE:  You MUST specify a location ref - ora-16014 

2.  Shutdown and restart the database.  It may be necessary to do a Shutdown     abort. 

3. Use the REOPEN attribute of the LOG_ARCHIVE_DEST_n init.ora parameter.    

  LOG_ARCHIVE_DEST_n='  REOPEN=30'     Or run the following comand:      

  alter system set LOG_ARCHIVE_DEST_n = 'reopen' 

4. Use the commands:        

alter system archive log stop;     alter system archive log start;  

Explanation ----------- 

The error ora-16014 is the real clue for this problem.  Once the archive  destination becomes full the location also becomes invalid.  Normally Oracle  does not do a recheck to see if space has been made available. 

1.  Using the command: alter system archive log all to 'c:oracleoradatav816archive';   gives Oracle a valid location for the archive logs.  Even after using this the  archive log destination parameter is still invalid and automatic achive does not work.  This solution is best for systems that do not archive regularly but cannot be shutdown.  You can also use this to allow you to do a Shutdown  immediate instead of Shutdown abort. 

2.  Shutdown and restart of the database resets the archive log destinstation  parameter to be valid.  Do not forget to make disk space available before  starting the database. 

3. Use the REOPEN attribute of the LOG_ARCHIVE_DEST_n parameter to determine  whether and when ARCn attempts to re-archive to a failed destination following an error.  REOPEN applies to all errors, not just OPEN errors.   REOPEN=n sets the minimum number of seconds before ARCn should try to reopen a failed destination.  The default value for n is 300 seconds.  A value of 0 is the same as turning off the REOPEN option, in other Words, ARCn will not  attempt to archive after a failure.  If you do not specify the REOPEN keyword,  ARCn will never reopen a destination following an error.  The Server  Administration Guide has more information on REOPEN.  

References ---------- 

[BUG:1271752] AUTOMATIC ARCHIVING HAS NOT RESUMED AFTER SPACE IS FREED UP Server Administration Guide:  Chapter 7 

[NOTE:74324.1] Auto Archive Stopped - 8i LOG_ARCHIVE_DEST_n Issues .

共3页 9 7 [1] [2] [38 :>

ORA-00257: archiver error. Connect internal only, until freed. 相关文章:
ORA-00257: archiver error. Connect internal only, until freed. 相关软件:
特别声明:本站除部分特别声明禁止转载的专稿外的其他文章可以自由转载,但请务必注明出处和原始作者。文章版权归文章原始作者所有。对于被本站转载文章的个人和网站,我们表示深深的谢意。如果本站转载的文章有版权问题请联系编辑人员,我们尽快予以更正。
转载请注明来源:http://www.xgdown.com