資料庫常斷開問題

2021-06-16 21:49:17 字數 478 閱讀 3828

方法

一、直接修改資源配置檔案

分三個步驟在sqlplus環境下完成。

第一步,查詢資源檔案,找到connect_time所在的profile名。

select resource_name,profile from dba_profiles; 

第二步,用alter命令修改profile中的值;

alter profile monitoring_profile limit connect_time unlimited;(或跟乙個時間值,如1000,單位為分鐘)

alter profile monitoring_profile limit idle_time unlimited; 

第三步,用如下命令檢視profile中的值;

select resource_name,limit from dba_profiles where profile='monitoring_profile';

參考

資料庫斷開

spring.datasource.url jdbc mysql localhost test spring.datasource.username dbuser spring.datasource.password dbpass spring.datasource.driver class nam...

資料庫連線斷開,資料庫連線池報錯問題

show variables where variable name wait timeout 這個是在mysql中檢視資料庫最大超時時間。也就是說 比如show variables where variable name wait timeout 查詢出的value為28800 8小時 60分鐘 ...

斷開所有資料庫連線

create proc killspid dbname varchar 20 as begin declare sql nvarchar 500 declare spid int set sql declare getspid cursor for select spid from sysproce...