From: | Eric Hallander <ehallander(at)tellium(dot)com> |
---|---|
To: | pgsql-admin(at)postgresql(dot)org |
Subject: | Re: how to cancel a query ? |
Date: | 2002-12-05 15:51:41 |
Message-ID: | 05707214338CD5119BFF0040A5B170D30259561D@mail3.tellium.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-admin |
If you wanted to do something programatically, couldn't you define some
functions that would allow you say implement a query id, and embed a
function call in the where clause like
select getNextQueryId()
where ...... and queryStillActive(query_id) = true
Then another function could be called to kill the query either from within
the program, or externally like
stopQuery(query_id).
You probably wouldn't want to do this for every query, but if you know you
have some potentially long running queries, then....
Eric
> -----Original Message-----
> From: Andreas Schmitz [mailto:a(dot)schmitz(at)cityweb(dot)de]
> Sent: Thursday, December 05, 2002 7:51 AM
> To: Tom Lane; pgman(at)candle(dot)pha(dot)pa(dot)us
> Cc: pgsql-admin(at)postgresql(dot)org
> Subject: Re: [ADMIN] how to cancel a query ?
>
>
> On Wednesday 04 December 2002 17:47, Tom Lane wrote:
> > Andreas Schmitz <a(dot)schmitz(at)cityweb(dot)de> writes:
> > > ist there any way to cancel a user query as dba ?
> >
> > Send a SIGINT to the backend process running that query, eg
> >
> > kill -INT <pid>
> >
> > This has the same effect as a user-requested cancel (eg ^C in psql).
> >
>
> What about an implementation into the command structure ?
>
> regards
>
> -andreas
>
> --
> Andreas Schmitz - Phone +49 201 8501 318
> Cityweb-Technik-Service-Gesellschaft mbH
> Friedrichstr. 12 - Fax +49 201 8501 104
> 45128 Essen - email a(dot)schmitz(at)cityweb(dot)de
>
>
> ---------------------------(end of
> broadcast)---------------------------
> TIP 3: 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
>
From | Date | Subject | |
---|---|---|---|
Next Message | Geoff | 2002-12-05 16:25:39 | Triggers/Rules? |
Previous Message | Tim Frank | 2002-12-05 14:01:00 | Re: PAM |