I am getting a message on my oracle server. Redo log Oracle Instance met -can not allocate log ,archiveal required.
How do I archive the redo lof files.
did you uncomment the 3 parameters in the init.ora related to the archiving.. if you did that after you made it archive did you bounce the db.. ??
Thx..
##### For archiving if ARCHIVELOG is on ########
LOG_ARCHIVE_DEST =D:\orant\database\archive
LOG_ARCHIVE_FORMAT =arc%S.%T
LOG_ARCHIVE_BUFFERS =4
LOG_ARCHIVE_BUFFER_SIZE =127
The error 'cannot allocate new log, archival required' suggests that your redo log files are small in size. You will tend to see this during a bulk insert/delete or during an import. Increase the size of the redo log files.
Bookmarks