Re: Killing a session on windows

From: "Bill Bartlett" <bbartlett(at)softwareanalytics(dot)com>
To: "'Howard Cole'" <howardnews(at)selestial(dot)com>, "'PgSql General'" <pgsql-general(at)postgresql(dot)org>
Subject: Re: Killing a session on windows
Date: 2007-11-29 11:22:02
Message-ID: 00f001c8327a$10e57050$32b050f0$@com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Use "select pg_cancel_backend(<pid>)" instead -- we have to do this periodically
when queries get timed out by the web server but Postgres doesn't notice /
doesn't get notified...

- Bill

-----Original Message-----
From: pgsql-general-owner(at)postgresql(dot)org
[mailto:pgsql-general-owner(at)postgresql(dot)org] On Behalf Of Howard Cole
Sent: Thursday, November 29, 2007 5:55 AM
To: 'PgSql General'
Subject: [GENERAL] Killing a session on windows

I have a database I want to drop on a windows server. Unfortunately I
cannot restart postgres because it is running several live database.

To kill the offending session, I tried select * from pg_stat_activity to
find the PID of the session, and then tried to kill it with command line:

taskkill /f /pid 1234

This appeared to kill the session, but postgres still thinks the session
is live with the same process id.

Using the SysInternals process explorer - there doesn't appear to be a
process with the given ID.

How can I get postgres to drop this session?

Thanks

Howard Cole
www.selestial.com

---------------------------(end of broadcast)---------------------------
TIP 1: if posting/reading through Usenet, please send an appropriate
subscribe-nomail command to majordomo(at)postgresql(dot)org so that your
message can get through to the mailing list cleanly

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Willy-Bas Loos 2007-11-29 11:50:58 1 cluster on several servers
Previous Message Richard Huxton 2007-11-29 11:08:22 Re: Killing a session on windows