您的位置:首页 > 其它

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

2014-11-04 17:18 591 查看
SQL>  alter system set log_archive_dest_1='/home/oracle/arch' scope=spfile;

 alter system set log_archive_dest_1='/home/oracle/arch' scope=spfile

报错:

ERROR at line 1:

ORA-32017: failure in updating SPFILE

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

出错原因:少了LOCATION或SERVICE关键字

解决办法:加上相应关键字即可。

如:

SQL> alter system set log_archive_dest_1='location=/home/oracle/arch' scope=spfile;

System altered.

--本篇文章参考自:http://blog.csdn.net/wyzxg/article/details/4301214
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐