aix 5.3l 中 10.2.0.4 中 sga_lock 設定
一般來說設定LOCK_SGA需要以下的步驟
1.$ /usr/sbin/vmo -r -o v_pinshm=1
2.$ /usr/sbin/vmo -r -o maxpin%=percent_of_real_memory
percent_of_real_memory = ((size of SGA / size of physical memory) *100) + 3
3.Set LOCK_SGA parameter to TRUE in the init.ora .
但是10.2.0.4還需要如下額外的操作:
Solution
1. Add the CAP_BYPASS_RAC_VMM and CAP_PROPAGATE capabilities to "oracle" user
# chuser capabilities=CAP_BYPASS_RAC_VMM,CAP_PROPAGATE oracle
2. Configure the AIX large page pool by calculating the number of large pages required for the SGA:
num_of_large_pages = INT((total_SGA_size-1)/16MB)+1
Note that although we are dealing with integer values, some rounding up must be considered, since rounding down makes no sense when trying to fit things into memory. For example, take an SGA size of 9999220736:
9999220736-1/(16*1024*1024)=595.99999994
Here, the integer calc will end up with a result of 595, but given the actual figure is higher, we would need to round up to 596 rather than accept the base figure of 595.
Or preferably change the int function to Round function.
3. Configure the number and size of large pages:
# vmo -p -o lgpg_regions=num_of_large_pages -o lgpg_size=16777216
Now login as "oracle" user and try database startup
SQL> connect / as sysdba
SQL> STARTUP UPGRADE
After enabling large page capabilities they may not be actually used by Oracle. Large pages may be allocated at the OS level but Oracle still uses normal memory. This is due to Bug 7226548. Please apply the Patch 7226548 to avoid this issue.
可能還涉及:Bug 7226548,需要安裝補丁。
10.2.0.4BUG真多。尼瑪
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/7728585/viewspace-741516/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 在AIX中設定中文環境AI
- 在AIX中設定中文環境(轉)AI
- upgrade oracle 10.2.0.4 for aixOracleAI
- 【AIX】AIX中級試題AI
- aix 6.1上rac升級到10.2.0.4AI
- AIX下NFS共享設定AINFS
- egw中間設定
- aix中的vi命令AI
- AIX中的limit值AIMIT
- aix中清告警燈AI
- AIX Shell環境設定(轉)AI
- 在Storyboard中設定borderColor
- input元素預設選中設定
- AIX中的裸裝置AI
- AIX 中audit 和syslogAI
- aix 中 topas命令解釋AI
- AIX中TOPAS命令詳解AI
- AIX7.1 VMO 引數預設設定AI
- 自定義滑鼠設定-中鍵設定為後退
- Echarts中Option屬性設定Echarts
- vscode中prettier設定VSCode
- MySQL中的時區設定MySql
- http header中cache設定HTTPHeader
- nginx 中防盜鏈設定Nginx
- Eclipse 中 minumum SDK設定Eclipse
- Fedora Core中設定PATH(轉)
- idea中設定maven預設位置IdeaMaven
- solaris中如何設定解析度?在solaris中設定解析度的方法教程
- aix變數的設定與檢測AI變數
- 在AIX中安裝gnu screenAI
- aix中read命令的用法AI
- AIX 中grep 的用法幫助AI
- ORA-00600 [qkacon:FJswrwo] on aix 5.3 10.2.0.4 bugJSAI
- GO 中如何設定 HTTPS 分享GoHTTP
- CAD中的線寬設定
- iOS 真機中設定 Slow AnimationsiOS
- IDEA中Usage提示功能設定Idea
- Shiro中的Remember me設定REM