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

2

3

I am using Oracle 10g database server. It will not allow me to connect to my user showing this error:

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

I found that this is the issue of space on database machine. How can I free space to get my database working?

Yonita answered 5/3, 2011 at 11:0 Comment(0)
O
9

I suggest you speak to your DBA or whoever is the sysadmin for the machine.

The database has "frozen" operations that require redo until more space is available to write archived redo-log files to.

Olwena answered 5/3, 2011 at 11:51 Comment(1)
To write archived log files to, surely? The active redo log can't be switched because there are no log groups which have been archived, because log_archive_dest is full or otherwise unavailable, I think.Homologize
G
0

I have encountered this error couple of times, it simply tells that archivelog space has exhausted and need to be freed.

> set oracled_sid=write_oracle_sid_here
> rman target sys/put_sys_password_here
> crosscheck archivelog all;
> delete noprompt expired archivelog all;
>exit;
Genealogy answered 13/8, 2019 at 6:16 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.