Re: How to stop a query

Поиск
Список
Период
Сортировка
От younus
Тема Re: How to stop a query
Дата
Msg-id 1342715157804-5717297.post@n5.nabble.com
обсуждение исходный текст
Ответ на Re: How to stop a query  (Atri Sharma <atri.jiit@gmail.com>)
Ответы Re: How to stop a query
Список pgsql-general
Hi,

Yes, I'm sure, it's work.

if you execute query by another program (program java), you must use the
first solution [ps -ef | grep postgres and  kill -9 (PID of your query)].

if you use pgsql terminal and you're connecting with postgres you can use
select procpid, datname, usename, client_addr,  current_query from
pg_stat_activity where current_query!='<IDLE>';
SELECT pg_cancel_backend (procpid);




Younus.

--
View this message in context: http://postgresql.1045698.n5.nabble.com/How-to-stop-a-query-tp1924086p5717297.html
Sent from the PostgreSQL - general mailing list archive at Nabble.com.

В списке pgsql-general по дате отправления:

Предыдущее
От: Scott Marlowe
Дата:
Сообщение: Re: How to stop a query
Следующее
От: Younus
Дата:
Сообщение: Re: How to stop a query