oracle 11G資料庫例項增加記憶體

2021-09-11 16:24:01 字數 699 閱讀 4096

現狀: 業務系統經常出現卡死,宕機的情況,但是具體檢視伺服器硬體資源都顯示正常,無法判斷問題出在**。

後思考,可能是orcl例項的記憶體資源有限,造成資源跑滿,所以進行嘗試更改系統記憶體資源操作。

1、伺服器環境  winserver 2012  ;oracle 11g

2、具體更改步驟:

登陸伺服器,找到sqlplus----執行如下命令

使用者名稱:sys /as sysdba

密碼:******

sql> show parameters sga;  //檢視記憶體配置資訊

sql> alter system set sga_max_size=10240m scope=spfile;   //將最大記憶體改為10g

sql> shutdown immediate;   //關閉資料庫

sql> startup       //開啟資料庫

sql> show parameters sga;  //再次檢視配置資訊

結束完成

備註:之前走過的彎路是通過plsql來進行修改,總是提示各種各樣的錯誤

ora-00900:invalid sql statement  

希望看到這篇文章的同學能少走彎路,修改一定要通過sqlplus

還原資料庫 oracle 11g

1.需要檔案 2.需要知道表空間 nnc data01 和臨時表空間 nnc index01 和資料庫使用者 nc63train 3.開始,第一步,建立兩個表空間 開啟sql plus,連線資料庫,執行語句 4.第二步,建立資料庫使用者 createuser nc63train identified...

解除安裝Oracle 11g資料庫

完全解除安裝oracle11g步驟 1 開始 設定 控制面板 管理工具 服務 停止所有 oracle 服務。2 開始 程式 oracle orahome81 oracle installation products universal installer,單擊 解除安裝產品 全部展開 選中除 ora...

Oracle11 g資料庫過期

公司使用的oracle11 g 32位 資料庫出現有效期過期問題,解決此問題可以使用下面的方法 1 查詢密碼有效期system登入 sql select from dba profiles where profile default and resource name password life t...