ORA-00845: MEMORY_TARGET not supported on this system報錯解決
11g資料庫修改pfile引數後啟動資料庫報錯ora-00845
SQL> startup
ORA-00845: MEMORY_TARGET not supported on this system
查詢資料後發現問題如下,見metalinikID 460506.1
在oracle 11g中新增的記憶體自動管理的引數MEMORY_TARGET,它能自動調整SGA和PGA,這個特性需要用到/dev/shm共享檔案系統,而且要求/dev/shm必須大於MEMORY_TARGET,如果/dev/shm比MEMORY_TARGET小就會報錯
解決方案
1.初始化引數MEMORY_TARGET或MEMORY_MAX_TARGET不能大於共享記憶體(/dev/shm),為了解決這個問題,可以增大/dev/shm
如:
# mount -t tmpfs shmfs -o size=2g /dev/shm
2.為了確保作業系統重啟之後能生效,需要修改/etc/fstab檔案
shmfs /dev/shm tmpfs size=2g 0
3.如果/dev/shm沒有掛載也會報上面的錯,所認需要確保已經掛載
[root@pxboracle ~]#$ df -h | grep tmpfs
tmpfs /dev/shm tmpfs defaults,size=1024M 0 0
[root@pxboracle ~]#mount -o remount,size=2G /dev/shm
[root@pxboracle ~]# cat /etc/fstab | grep tmpfs
tmpfs /dev/shm tmpfs defaults,size=1g 0 0
[root@pxboracle ~]# vi /etc/fstab
[root@pxboracle ~]# df -h|grep shm
tmpfs 2G 0 2G 0% /dev/shm
SQL> startup
ORACLE instance started.
Total System Global Area 9420095488 bytes
Fixed Size 2236248 bytes
Variable Size 2315255976 bytes
Database Buffers 7046430720 bytes
Redo Buffers 56172544 bytes
Database mounted.
Database opened.
SQL> exit
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/12798004/viewspace-1144633/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 解決辦法:ORA-00845: MEMORY_TARGET not supported on thi
- MEMORY_TARGET not supported on this system
- /system/bin/sh: screenrecord: inaccessible or not found 報錯解決方案
- System.Data.SqlClient is not supported on this platform.SQLclientPlatform
- 解決The given version [xx] is not supported, only version 1 to 10 is supported in this buildUI
- 解決 Lumen 中 client charset is not supportedclient
- 解決報錯 cuDNN error: CUDNN_STATUS_NOT_SUPPORTED. This error may appear if you passed in a non-contiguous input.DNNErrorAPP
- Mac新建資料夾報錯,mkdir():Operation not supportedMac
- mybatis報錯解決MyBatis
- 解決eslint報錯EsLint
- 用putty連線AWS,報錯“No supported authentication methods available"AI
- 解決Project facet Java version 1.8 is not supported.ProjectJava
- SS報錯的解決
- iText中文,報錯解決
- supervisor使用報錯解決
- npm install 報錯解決NPM
- 報錯內容解決
- SAP Table function 執行報錯 feature not supported 該如何分析Function
- dbfread報錯ValueError錯誤解決方法Error
- VSCode中Flow報錯解決VSCode
- Windows分割槽報錯解決Windows
- minio報錯SignatureDoesNotMatch解決方案
- hive使用報錯解決方法Hive
- 解決啟動openfeign報錯
- 解決angular 報錯 url unsafeAngular
- 解決fitz模組報錯
- pyhton3解決”tuple parameter unpacking is not supported”問題
- remount of /system failed: Read-only file system原因及解決REMAI
- cnpm link 報錯解決辦法NPM
- Android Studio 報錯解決方案 一Android
- docker系列-報錯以及解決指南Docker
- 解決 Inkscape 報錯 Duplicate 問題
- electron npm install 報錯解決方案NPM
- Qt 解決報錯registered using qRegisterMetaType()QT
- zabbix-server is not running 報錯解決Server
- mongodb find報錯怎麼解決MongoDB
- linux 安裝 jupyter報錯解決Linux
- IDEA中的.VUE檔案報錯 Export declarations are not supported by current JavaScript versionIdeaVueExportJavaScript
- angular(2+)報錯處理之 -- 關於function 、lambda、not supported等AngularFunction