1、修改oracle系统参数
alter system set sga_max_size=1640M scope=spfile;(Total physical RAM *80%*50%)
alter system set sga_target=1640M scope=spfile;
alter system set pga_aggregate_target=650M scope=spfile;(Total physical RAM *80%*20%)
alter system set pre_page_sga=true scope=spfile;
alter system set shared_pool_size=128M scope=spfile;
alter system set open_cursors=2000 scope=spfile;
alter system set session_cached_cursors=50 scope=spfile;
alter system set cursor_sharing=exact scope=spfile;
alter system set cursor_space_for_time=true scope=spfile;
2、关闭oracle
shutdown immediate;
3、启动oracle
startup open;
本文介绍了如何通过调整Oracle数据库的系统参数来优化其性能,并提供了具体的设置指令。此外,还包含了关闭与重新启动Oracle数据库的方法。
820

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



