ORA-00064: object is too large to allocate on this O/S
ORA-00064: object is too large to allocate on this O/S
Symptoms 1:
Instance Startup failed with ORA-00064 when processes parameter set to High Value
Cause
The problem is filed as a code bug (2204394)
Solution:
Bug 2204394 (internal bug) is fixed in 10g. There is no one-off patch available for 9i and development indicates this bug cannot be fixed in 9i.
The workaround to bypass this limit is to set the hidden parameter _ksmg_granule_size to 32M or reduce the value of processes parameter
SQL> alter system set "_ksmg_granule_size"=32M scope=spfile;
Symptoms 2:
ORA-00064 error is possibly encountered on database startup when the parameter OPEN_LINKS_PER_INSTNACE set to over 400
Cause:
The initialization parameter DB_BLOCK_SIZE is set to a value that calls for more contiguous space than can be allocated on the operating system being used. Action: Reduce the value of DB_BLOCK_SIZE so that the requested contiguous space is within the capacity of the operating system.
This is NOT a BUG.
To fix the issue , increase the size of the SGA to over 128Mb by increasing DB_CACHE_SIZE,
SHARED_POOL_SIZE,LARGE_POOL_SIZE, JAVA_POOL_SIZE, etc.This will cause the granule size to
be increased to 16Mb.
oracle官方文件有這麼一段話:
With dynamic SGA, the unit of allocation is called a granule. Components, such as the buffer cache, the shared pool, the java pool, and the large pool, allocate and free SGA space in units of granules. Oracle tracks SGA memory use in integral numbers of granules, by SGA component. All information about a granule is stored in a corresponding granule entry. Oracle maintains the state of each granule in the granule entry and the granule type.
Granule size is determined by total SGA size. On most platforms, the size of a granule is 4 MB if the total SGA size is less than 128 MB, and it is 16 MB for larger SGAs. There may be some platform. dependency, for example, on 32-bit Windows NT, the granule size is 8 MB for SGAs larger than 128 MB.
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/7478833/viewspace-604508/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- sga_target設定大於100G遇到的一個bug ORA-00064: object is too largeObject
- LOB(large object)Object
- insert:key too large to index…Index
- nodejs Error: request entity too large解決方案NodeJSError
- Mysql 報Row size too large 65535解決方法MySql
- Row size too large (> 8126)解決辦法
- 【AWR】Suggestions if Your SYSAUX Tablespace Grows Rapidly or Too LargeUXAPI
- gunzip時,提示file too large(問題已解決)
- system image file too large for device hardware configurationdev
- Openstack Nova Failed to allocate network(s)AI
- when tag object too many, performance very lowObjectORM
- ejb object too much ,how server working??ObjectServer
- node接收圖片報錯 PayloadTooLargeError: request entity too largeError
- Index column size too large. The maximum column size is 767 bytesIndex
- ES報錯Result window is too large問題處理薦
- mysql specified key was too long與Index column size too large. The maximum column size is 767 bytes.MySqlIndex
- 上傳報錯 Status Code: 413 Payload Too Large 請教!
- Index column size too large. The maximum column size is 767 bytes.Index
- Java程式碼解決ElasticSearch的Result window is too large問題JavaElasticsearch
- Nginx出現413 Request Entity Too Large錯誤解決方法Nginx
- Nginx 報錯413 Request Entity Too Large 上傳檔案過大Nginx
- mysql Index column size too large 超過767錯誤解決方案(轉)MySqlIndex
- 1709 - Index column size too large. The maximum column size is 767 bytes.Index
- [Err] 1709 - Index column size too large. The maximum column size is 767 bytes.Index
- 【es】FATAL [circuit_breaking_exception] [parent] Data too large, data for [<http_request>] would beUIExceptionHTTP
- [Mark]解決ElasticSearch深度分頁機制中Result window is too large問題Elasticsearch
- MySQL建立表失敗:Index column size too large. The maximum column size is 767 bytesMySqlIndex
- 【解決方法】Dubbo報錯Data length too large,調整payload大小解決
- MySQL 5.7 到 5.6,出現 Index column size too large. The maximum column size is 767 bytesMySqlIndex
- #1118 - Row size too large. The maximum row size for the used table type, not counting BLOBs
- Object o = new Object()佔多少個位元組?-物件的記憶體佈局Object物件記憶體
- ORA-17500: ODM err:ODM ERROR V-41-3-2-207-5 Mirror Number too largeError
- MySQL資料庫index column size too large. the maximum column size is 767 bytes問題解決MySql資料庫Index
- SAP MM ME21N 建立PO時報錯 - Net price in CNY becomes too large – 之原因分析
- mysql5.7 資料匯入5.6 Index column size too large. The maximum column size is 767 bytes.MySqlIndex
- 儲存富文字文字內容太多,提示nginx 414 Request-URI Too Large及tomcat報錯NginxTomcat
- ALLOCATE CHANNEL FOR MAINTENANCE 命令AINaN
- Who’s Afraid of Their Big Bad O?AI