添加链接
link管理
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接
相关文章推荐
从容的金针菇  ·  PostgreSQL JSON Tutorial·  1 周前    · 
胡子拉碴的拐杖  ·  数据值·  1 周前    · 
重情义的筷子  ·  SpringBoot 结合 Mybatis ...·  4 天前    · 
想出国的豆腐  ·  PostgreSQL Python: ...·  4 天前    · 
内向的馒头  ·  No property found for ...·  4 月前    · 
阳光的海龟  ·  Android ...·  1 年前    · 

RDS PostgreSQL中删除数据库时出现“There are 2 other sessions using the database”报错

问题描述

RDS PostgreSQL中删除数据库时出现如下报错。

ERROR: database "mctest" is being accessed by other users  详细:There are 2 other sessions using the database. 

问题原因

当前有其他连接在使用该数据库。

解决方案

  1. 执行如下命令,断开mctest数据库所有的连接。

    select pg_terminate_backend(pid) from (select pid from pg_stat_activity where datname = '[$Database_Name]' ) a;
    说明

    [$Database_Name]为数据库名称。

  2. 删除数据库即可。

适用于

  • 云数据库RDS PostgreSQL版