116.Your database instance is started using the server parameter file (SPFILE). You executed a comma

本文探讨了Oracle数据库中LOG_BUFFER参数的作用及限制,通过实验验证该参数无法动态修改,并介绍了正确的配置方法。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

116.Your database instance is started using the server parameter file (SPFILE). You executed a
command to change the value of the LOG_BUFFER initialization parameter:
ALTER SYSTEM SET LOG_BUFFER=32M SCOPE=BOTH;
What would be the outcome of this command?
A.The command succeeds only if Automatic Memory Management is not enabled.
B.The command succeeds, but you need to restart the database for changes to take effect.
C.The command returns an error because the size of the redo log buffer cannot be changed dynamically.
D.The parameter value is changed and it comes into effect as soon as space becomes available in the System Global Area (SGA).
答案:C
解析:
参考:http://docs.oracle.com/cd/E11882_01/server.112/e40402/initparams133.htm#REFRN10094
LOG_BUFFER:redo写入从内存写入redo文件的这块区域,以字节为单位,并且是静态参数,不可以动态修改
ALTER SYSTEM SET LOG_BUFFER=32M SCOPE=BOTH;这里其实有两个错误,第一是32M,第二是SCOPE=BOTH
scope=both相当于scope=spfile和scope=memory的总和,也就是配置文件和内存同时进行修改
SQL> alter system set log_buffer=2240512 scope=both;
alter system set log_buffer=2240512 scope=both
                 *
ERROR at line 1:
ORA-02095: specified initialization parameter cannot be modified
SQL> alter system set log_buffer=2m scope=spfile;
alter system set log_buffer=2m scope=spfile
                 *
ERROR at line 1:
ORA-02095: specified initialization parameter cannot be modified


SQL> alter system set log_buffer=2240512 scope=spfile;
System altered.
--这样就可以了
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值