Activate the archive log mode in Oracle
To do so, connect to the Oracle database as an administrator and activate the active log mode using the following queries:
connect / as sysdba;
shutdown;
startup exclusive mount;
alter database archivelog;
alter database open;