To verify the archive log mode, enter:
select log_mode from v$database;
If the archive log mode is on, you see:
LOG_MODE
-------
ARCHIVELOG
If the archive log mode is off,you see:
Run the .sqlpus/nolog command
to set the archive log mode to on, then enter:
connect sys/password as sysdba;
startup mount;
alter database archivelog;
alter database open;
alter system set recyclebin=off;