Re: dropdb: database removal failed: active sessions - Mailing list pgsql-general

From John R Pierce
Subject Re: dropdb: database removal failed: active sessions
Date
Msg-id 4E5BF90C.20901@hogranch.com
Whole thread Raw
In response to dropdb: database removal failed: active sessions  (JD Wong <jdmswong@gmail.com>)
Responses Re: dropdb: database removal failed: active sessions  (Scott Marlowe <scott.marlowe@gmail.com>)
List pgsql-general
On 08/29/11 12:22 PM, JD Wong wrote:
> I cannot dropdb.  Postgres throws me:
> dropdb: database removal failed: ERROR:  database "database1" is being
> accessed by other users
> DETAIL:  There are 1 other session(s) using the database.
>
> the "select datname,current_query,query_start from pg_stat_activity ;"
> query gives me:
>
>          datname         |
>          current_query
>       |          query_start
>
-------------------------+--------------------------------------------------------------------------------------------------------------------------+-------------------------------
> ...
>  database1             | <IDLE>
>
>       | 2011-08-29 15:07:31.423596-04
>
> Is the drop being prevented by the active query from database2?  If
> not how can I kill the <IDLE> query that must be preventing deletion.


any connection to the database, even idle, will prevent a drop database.

try...

     select pg_terminate_backend(procpid) from pg_stat_activity where
datname = 'database1';

that will snuff those processes.  then you can drop the database,
assuming the clients don't immediately reconnect.


--
john r pierce                            N 37, W 122
santa cruz ca                         mid-left coast


pgsql-general by date:

Previous
From: Lonni J Friedman
Date:
Subject: heavy swapping, not sure why
Next
From: Alan Hodgson
Date:
Subject: Re: heavy swapping, not sure why