On Wed, Feb 02, 2005 at 11:33:03PM -0200, Luiz Rafael Culik Guimaraes wrote:
> i´m getting many message of
> Erro:canceling query due to user request
What does the following query show?
SHOW statement_timeout;
If statement_timeout isn't 0 (zero) and if you didn't change it in
postgresql.conf, then maybe you're picking it up from a per-user
or per-database configuration. You can check such settings with
the following queries:
SELECT usename, useconfig FROM pg_user;
SELECT datname, datconfig FROM pg_database;
You can use ALTER USER or ALTER DATABASE to change the settings.
--
Michael Fuhr
http://www.fuhr.org/~mfuhr/