RDS PostgreSQL中刪除數(shù)據(jù)庫時出現(xiàn)“There are 2 other sessions using the database”報錯
更新時間:
問題描述
RDS PostgreSQL中刪除數(shù)據(jù)庫時出現(xiàn)如下報錯。
ERROR: database "mctest" is being accessed by other users 詳細(xì):There are 2 other sessions using the database.
問題原因
當(dāng)前有其他連接在使用該數(shù)據(jù)庫。
解決方案
執(zhí)行如下命令,斷開mctest數(shù)據(jù)庫所有的連接。
select pg_terminate_backend(pid) from (select pid from pg_stat_activity where datname = '[$Database_Name]' ) a;
說明[$Database_Name]為數(shù)據(jù)庫名稱。
刪除數(shù)據(jù)庫即可。
適用于
云數(shù)據(jù)庫RDS PostgreSQL版
文檔內(nèi)容是否對您有幫助?