Answers for "ERROR: database is being accessed by other users DETAIL: There is 1 other session using the database."

0

ERROR: database "backend" is being accessed by other users DETAIL: There are 3 other sessions using the database.

sudo service postgresql restart
Posted by: Guest on June-17-2020
0

pgadmin postgres ERROR: database is being accessed by other users

PostgresVersion >=9.2

SELECT 
   pg_terminate_backend(pg_stat_activity.pid)
FROM pg_stat_activity
WHERE
   pg_stat_activity.datname = 'name_of_database_to_be_disconnected'
AND pid <> pg_backend_pid()
Posted by: Guest on November-28-2020

Code answers related to "ERROR: database is being accessed by other users DETAIL: There is 1 other session using the database."

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language