You are on page 1of 2

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

Moved the files


in C:\APP\SADMIN\FAST_RECOVERY_AREA\HFDEV\ARCHIVELOG\ to C:\Oraclebackup
\archivelog_backedup_on_26-12-2014 and compressed it there.

select * from v$archived_log

1 863845291 C:\APP\SADMIN\FAST_RECOVERY_AREA\HFDEV\ARCHIVELOG\201
4_11_17\O1_MF_1_91_B6MWFCGT_.ARC 1
2 863848842 C:\APP\SADMIN\FAST_RECOVERY_AREA\HFDEV\ARCHIVELOG\201
4_11_17\O1_MF_1_92_B6MZWBLD_.ARC 1
3 863870239 C:\APP\SADMIN\FAST_RECOVERY_AREA\HFDEV\ARCHIVELOG\201
4_11_17\O1_MF_1_93_B6NNRZ4B_.ARC 1
4 863884853 C:\APP\SADMIN\FAST_RECOVERY_AREA\HFDEV\ARCHIVELOG\201
4_11_17\O1_MF_1_94_B6O31ODV_.ARC 1
5 863906409 C:\APP\SADMIN\FAST_RECOVERY_AREA\HFDEV\ARCHIVELOG\201
4_11_17\O1_MF_1_95_B6OR3943_.ARC 1

SQL> show parameter log_archive_dest_state_1

NAME TYPE VALUE


------------------------------------ ----------- -----------------------
log_archive_dest_state_1 string enable
log_archive_dest_state_10 string enable
log_archive_dest_state_11 string enable
log_archive_dest_state_12 string enable
log_archive_dest_state_13 string enable
log_archive_dest_state_14 string enable
log_archive_dest_state_15 string enable
log_archive_dest_state_16 string enable
log_archive_dest_state_17 string enable
log_archive_dest_state_18 string enable
log_archive_dest_state_19 string enable
SQL>

SELECT name,ROUND(space_limit/1024/1024) space_limit, ROUND(space_used/1024/1024)


space_used, ROUND(space_reclaimable/10) FROM v$recovery_file_dest;

Using
the DB_RECOVERY_FILE_DEST and DB_RECOVERY_FILE_DEST_SIZE initialization
parameters we can define the FRA location and size. To set the flash recovery area to 50
GB, enter the following commands:
SQL> ALTER SYSTEM SET db_recovery_file_dest_size=80G SCOPE=both;
System altered.

While configuring FRA, make sure that you set the size
(db_recovery_file_dest_size ) first and then the location
(db_recovery_file_dest).

V$FLASH_RECOVERY_AREA_USAGE is another useful view that provides


space usage information based on file types (control files, redo
logfiles etc)

You might also like