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

    Your database is running in ARCHIVELOG mode:
    SQL> select log_mode from v$database;
    
    LOG_MODE
    ------------
    ARCHIVELOG
    
    Because the database is running in archive log mode, the redo log files are archived to an archive destination.

    (one of) the destination(s) have no sufficient space left to write the archived redo logs to.

    SQL> select destination from v$archive_dest;
    ...
    
    Check if there is sufficient space left, if not, archive the archived redo logs to tape/other disk/...

    The database should free itself after this error. If this is not the case try issuing the alter system archive log all; command connected AS SYSDBA.

Adverteren bij Daisycon
Forum Messages
No messages
Add your message for ORA-00257
Name:email:
Validation Code:3wtyo56hcmaypu7ps
Enter Code above:
Title:
State your problem: