ORA-16179: incremental changes to "log_archive_dest_1" not allowed with SPFILE

SQL> alter system set log_archive_dest_1='E:arch ' scope=both;
alter system set log_archive_dest_1='E:arch ' scope=both
*
ERROR at line 1:
ORA-32017: failure in updating SPFILE
ORA-16179: incremental changes to "log_archive_dest_1" not allowed with SPFILE

更改为:

SQL> alter system set log_archive_dest_1='location=E:arch ' scope=spfile;
原文地址:https://www.cnblogs.com/abclife/p/4632867.html