Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to write a script that will drop a postgresql database. There may be a lot of connections to it but the script should ignore that.

The standard DROP DATABASE db_name query doesn't work in cases when connections exist.

How can I solve the problem?

Thanks.

share|improve this question
What version of PostgreSQL are you on? – JustBob Mar 23 '11 at 17:16
I use PostgreSQL 8.4 – Roman Prykhodchenko Mar 23 '11 at 18:06

4 Answers

up vote 89 down vote accepted

This will drop existing connections:

Query pg_stat_activity and get the pid values you want to kill and issue select pg_terminate_backend(pid int) to them.

PostgreSQL 9.1 and below:

SELECT pg_terminate_backend(pg_stat_activity.procpid)
FROM pg_stat_activity
WHERE pg_stat_activity.datname = 'TARGET_DB';

PostgreSQL 9.2 and above:

SELECT pg_terminate_backend(pg_stat_activity.pid)
FROM pg_stat_activity
WHERE pg_stat_activity.datname = 'TARGET_DB';

Note the renaming of the procpid column to pid. See this mailing list thread.

share|improve this answer
Works from 8.4 up... – Daniel Mar 23 '11 at 16:49
Thank you. Your answer is helpful. – Roman Prykhodchenko Mar 23 '11 at 18:17
2  
And of course, be sure to do that from a db connection that is not a connection to 'TARGET_DB', otherwise you get 'ERROR'. A 'postgres' connection works well. – Rob Jul 26 '11 at 16:00
2  
Note: since postgresql 9, the column pg_stat_activity.procpid has been renamed to pg_stat_activity.pid – ZNK - M Oct 30 '12 at 14:48
I tried pid in postgres 9.1.9 and it did not worked whereas procpid worked. – pisaruk May 6 at 18:29
show 1 more comment

You could kill all connections before dropping the database using the pg_terminate_backend(int) function.

You can get all running backends using the system view pg_stat_activity

I'm not entirely sure, but the following would probably kill all sessions:

select pg_terminate_backend(procpid)
from pg_stat_activity
where datname = 'doomed_database'

Of course you may not be connected yourself to that database

share|improve this answer

I noticed that postgres 9.2 now calls the column pid rather than procpid.

I tend to call it from the shell:

#!/usr/bin/env bash
# kill all connections to the postgres server
if [ -n "$1" ] ; then
  where="where pg_stat_activity.datname = '$1'"
  echo "killing all connections to database '$1'"
else
  echo "killing all connections to database"
fi

cat <<-EOF | psql -U postgres -d postgres 
SELECT pg_terminate_backend(pg_stat_activity.pid)
FROM pg_stat_activity
${where}
EOF

Hope that is helpful. Thanks to @JustBob for the sql.

share|improve this answer
Nice! Just what I was looking for! – mhenrixon Jan 21 at 12:48

In PostgreSQL 9.2 and above, to disconnect everything except your session from the database you are connected to:

SELECT pg_terminate_backend(procpid)
FROM pg_stat_activity
WHERE datname = current_database()
  AND procpid <> pg_backend_pid();

In older versions it's the same, just change pid to procpid. To disconnect from a different database just chance current_database() to the name of the database you want to disconnect users from.

You may want to REVOKE the CONNECT right from users of the database before disconnecting users, otherwise users will just keep on reconnecting and you'll never get the chance to drop the DB. See this comment and the question it's associated with, How do I detach all other users from the database.

If you just want to disconnect idle users, see this question.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.