ERROR: current database cannot be renamed STATEMENT: ALTER DATABASE xxx RENAME TO xxx2;
查看客户端软件连接信息是否是当前需要修改的数据库,如果是,需要把数据库修改成其他数据库。
如,我要修改postgres名称,那么这里就需要把postgres换成其他数据库
ERROR: database "xxx" is being accessed by other users DETAIL: There are 3 other sessions using the database.
说明有用户连接这个数据库,需要把连接kill掉。
如使用ps -ef|grep xxx,然后kill pid
标签:重命名,PostgreSQL,database,数据库,xxx,other,报错,kill From: https://www.cnblogs.com/daizichuan/p/17894451.html