export ORACLE_HOME=/sysp/ora/ora10g_rac/product/10.2.0
export PATH=$PATH:$ORACLE_HOME/bin
export ORACLE_SID=sid_name
${ORACLE_HOME}/bin/sqlplus /nolog << EOF
CONNECT / as sysdba
-- nowait
alter system set commit_write='IMMEDIATE, NOWAIT' scope=both;
-- fallback
-- alter system set commit_write='IMMEDIATE' scope=both;
select inst_id, name, value from gv$parameter where name like '%commit_write%'
commit;
exit;
EOF
Oracle System Authentication Sample
最新推荐文章于 2025-01-07 22:50:15 发布
本文详细介绍了如何配置和调整Oracle数据库的commit_write参数,包括使用sqlplus命令进行设置,并展示了参数设置后的查询验证过程。
1040

被折叠的 条评论
为什么被折叠?



