Re: DB transactions when browser freezes - Mailing list pgsql-general

From David Johnston
Subject Re: DB transactions when browser freezes
Date
Msg-id 1375973219711-5766829.post@n5.nabble.com
Whole thread Raw
In response to DB transactions when browser freezes  (dafNi zaf <dzaf88@gmail.com>)
Responses Re: DB transactions when browser freezes  (dafNi zaf <dzaf88@gmail.com>)
List pgsql-general
dafNi wrote
> Should I assume that the transactions keep running?

Never assume...or at least try and verify those assumptions when possible.

To verify this assumption:

Connect to the DB directly as a super-user and run this (or something
similar):

SELECT procpid, current_query, client_addr, xact_start, query_start
    FROM pg_stat_activity
    ORDER BY xact_start ASC, client_addr;

to what activity is currently in-progress.

David J.




--
View this message in context:
http://postgresql.1045698.n5.nabble.com/DB-transactions-when-browser-freezes-tp5766824p5766829.html
Sent from the PostgreSQL - general mailing list archive at Nabble.com.


pgsql-general by date:

Previous
From: Alban Hertroys
Date:
Subject: Re: DB transactions when browser freezes
Next
From: Ian Lawrence Barwick
Date:
Subject: Re: DB transactions when browser freezes