ORA-12520錯誤解決方法
ORA-12520錯誤解決方法
ORA-12520聽程式無法為請求的伺服器型別找到可用的處理程式:
1)資料庫是專用伺服器,但是在tnsname.ora配置中設定了連線方式為shared,這種情況下開啟tnsname.ora,
把(server = shared) 改成 (server = dedicate)
2)是由於process不夠引起的
後來檢視到v$process一直漲到140多,而我的資料庫設定的是150.據此大致能斷定process不夠,用以下語句修改資料庫的processes值
alter system set processes=500 scope=spfile(由於processes是靜態引數,scope只能為spfile,在v$sgastate條件為'procesees'中可以看到會每個process會點4個位元組),
重新啟動資料庫使新改的processes生效.再重新跑eclipse,就能正常啟動了.
note:如果在hibernate中的hibernate.connection.provider_class選擇的是c3p0的就會出這種情況,其它的好像不會.很奇怪為什麼c3p0會開啟那麼多個processs, 在shared連勢接方式下,shared_server即是一直連在資料庫的process值,注意這點
當前的連線數
select count(*) from v$process;
設定的最大連線數(預設值為150)
select value from v$parameter where name = 'processes';
修改最大連線數
alter system set processes = 300 scope = spfile;
相關文章
- PbootCMS 404 錯誤解決方法boot
- vsftpd 錯誤:530 and 500 錯誤解決方法FTP
- undefined reference to錯誤的解決方法Undefined
- AFNetworkingErrorDomain 錯誤解決方法ErrorAI
- PHP錯誤“Thisfilehasexpired”的解決方法PHP
- dbfread報錯ValueError錯誤解決方法Error
- HTTP 錯誤 500.19- Internal Server Error 錯誤解決方法HTTPServerError
- 【Oracle】ORA-00054 錯誤解決方法Oracle
- 錯誤Namenodeisinsafemode的解決方法
- Android錯誤解決方法集錦Android
- hadoop日常錯誤解決方法整理Hadoop
- ORA-04098錯誤解決方法
- ORA-25154錯誤解決方法
- npm WARN unmet dependency錯誤解決方法NPM
- standby新增檔案錯誤的解決方法
- MYSQL中 TYPE=MyISAM 錯誤的解決方法MySql
- Mac上搭建chromedriver的錯誤解決方法MacChrome
- 寬頻連線錯誤691解決方法
- ORA-14452錯誤及解決方法
- ubuntu網路卡啟動錯誤解決方法Ubuntu
- IMP-00098 錯誤及解決方法
- nginx出現403錯誤的解決方法Nginx
- steam磁碟寫入錯誤怎麼解決 steam磁碟寫入錯誤解決方法大全
- Ocelot錯誤解決
- ORACLE匯入遇到ORACLE錯誤959解決方法Oracle
- 寬頻連線錯誤解決方法總彙
- PL/SQL:ORA-04063錯誤解決方法SQL
- ORA-01631錯誤解決方法
- Oracle 資料庫連線錯誤解決方法Oracle資料庫
- ORA-00257 錯誤分析及解決方法
- ORA-01950錯誤的解決方法
- Ajax中“Sys未定義”錯誤的解決方法
- 印表機提示列印錯誤怎麼解決 印表機狀態錯誤的方法
- VIM 常用錯誤解決
- sqldeveloper for windows 錯誤解決SQLDeveloperWindows
- Nginx報504 gateway timeout錯誤的解決方法NginxGateway
- oracle ORA-12899錯誤的解決方法Oracle
- MySQL常見錯誤分析與解決方法總結MySql