突然发现数据库不能连接说只能内部连接,重启机器后手动打开数据库,出现如下错误:
ORA-16038: log 1 sequence# 2183 cannot be archived
ORA-19809: limit exceeded for recovery files
ORA-00312: online log 1 thread 1: '/u01/app/oracle/oradata/oratvt/redo01.log'
查看数据库错误消息说是因为归档日志文件已经写满,ORA-19809: limit exceeded for recovery files 
Cause: The limit for recovery files specified by the DB_RECOVERY_FILE_DEST_SIZE was exceeded.
Action: The error is accompanied by 19804. See message 19804 for further details.ORA-19804: cannot reclaim string bytes disk space from string limit 
Cause: Oracle cannot reclaim disk space of specified bytes from the DB_RECOVERY_FILE_DEST_SIZE limit.
Action: There are five possible solutions: 1) Take frequent backup of recovery area using RMAN. 2) Consider changing RMAN retention policy. 3) Consider changing RMAN archivelog deletion policy. 4) Add disk space and increase DB_RECOVERY_FILE_DEST_SIZE. 5) Delete files from recovery area using RMAN.我查看init.ora文件,并没有发现有db_recovery_file_dest_size 参数,
用 alter system archive stop 也不能commit,数据库不能打开,
请问怎么解决啊,归档模式的应用是一次做测试是设置的,忘了再改回来。