In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-03-30 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >
Share
Shulou(Shulou.com)06/01 Report--
Enter SQLPLUS, query shared_pool, and often see the following results:
SQL> show parameter shared_pool
NAME TYPE VALUE
------------------------------------ ----------- ------------------------------
shared_pool_reserved_size big integer 20971520
shared_pool_size big integer 419430400
In Oracle, shared_pool consists of two parts, one of which is shared_pool_reserved_size. This parameter is used to specify the amount of shared pool space reserved to accommodate future large sequential requests for shared pool space. When the shared pool is too fragmented, requesting large chunks of space will cause Oracle to extensively find and free shared pool memory to satisfy the request, which may cause severe performance degradation. By setting the appropriate shared_pool_reserved_size parameter, combined with the shared_pool_reserved_min_alloc parameter, you can avoid the performance degradation caused by this.
The ideal value for this parameter should be large enough to satisfy any memory request for RESERVED LIST without the database flushing objects from the shared pool. The default value for this parameter is 5% of the shared_pool_size, and the recommended value for this parameter is usually 10% to 20% of the shared_pool_size parameter, with a maximum of 50% of the shared_pool_size. (More than 50% may cause the database to fail to start, be careful!)
rac system modification operation (the following modifications are recommended on databases without SGA enabled, and not recommended on databases with SGA enabled)
1. Modify the first node:
alter system set shared_pool_size=5000M sid='rac1' scope=spfile;
alter system set shared_pool_reserved_size=500M sid='rac1' scope=spfile;
shutdown immediate
startup
2. After the first node is started, modify the second node:
alter system set shared_pool_size=5000M sid='rac2' scope=spfile;
alter system set shared_pool_reserved_size=500M sid='rac2' scope=spfile;
shutdown immediate
startup
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.