ORA-00257: archiver error

ORA-00257: archiver error

归档满问题:

报错:

SQL> conn admin/admin

ERROR:

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

Warning: You are no longer connected to ORACLE.

检查空间:

SQL> select name, total_mb, free_mb from v$asm_diskgroup;

NAME TOTAL_MB FREE_MB


ARCH 327680 176

DATA 737280 10941

OCRBAK 30720 29794

SQL> select name,total_mb,free_mb from v$asm_disk;

如果用到recover_area_usage,那么检查select * from V$FLASH_RECOVERY_AREA_USAGE;

处理方法:

asmcmd

cd +ARCH/jxdb/archivelog/

rm -rf 2014_10_*

rman target /

crosscheck archivelog all;

delete noprompt expired archivelog all;

或者:(本次使用下面方法)
delete noprompt force archivelog all completed before 'sysdate-7';

强制删除全部的话:

delete noprompt force archivelog all;

相关推荐
Python私教10 小时前
从表格到管理系统:别先写页面,先补齐权限、流程和审计
数据库·后端·架构
陈皮波比茶10 小时前
Redis学习
数据库·redis·学习
—Miss. Z—11 小时前
备份与恢复
数据库·oracle
ltl11 小时前
RocksDB Leveled Compaction:层级不变式与 CompactionPicker
数据库
ltl11 小时前
DuckDB 向量化与 Morsel-Driven Pipeline
数据库
NJCloud11 小时前
TiDB 集群部署与 MySQL 兼容性适配实战
linux·运维·数据库·mysql·tidb
喜欢打篮球的普通人11 小时前
LLVM Backend Lowering 从入门到实战:把 IR 变成机器码的完整链路
android·java·数据库
SomeOtherTime14 小时前
Postgresql触发器实现对表的日志审计
数据库·postgresql
这个DBA有点耶14 小时前
Oracle 迁移金仓兼容性评估指南:5 大维度深度拆解
数据库·oracle·架构