Disable archive in 19c from init file
oracle DB 19c, non RAC
Need to disable archive log mode via init.
DB instance is restarted on weekly basis, so the manual steps with:
startup mount
alter database noarchivelog;
alter database open;
are irrelevant here. I am looking for parameter similar to :log_archive_start=FALSE
but this one is deprecated in 19c -> ORA-32006: LOG_ARCHIVE_START initialization parameter has been deprecated
and thus the instance still starts in ARCHIVELOG mode.
Is there a new parameter valid for 19c that I could set in init file in order for the instance to start in NOARCHIVELOG mode?