Postgresql 关闭session链接,删除数据库方法
Postgresql 中 有时候想删除数据库(drop database swiftliveqaapi;),发现提示“ERROR: database "xxxxxx" is being accessed by other usersDETAIL: There are 30 other sessions using the database.”
解决方法:
SELECTpg_terminate_backend(pid)FROMpg_stat_activityWHEREdatname='
数据库名'ANDpid<>pg_backend_pid();
然后就可以删除数据库了。 原文链接:https://www.f2er.com/postgresql/194291.html