Re: problem with postgres - Mailing list pgsql-sql

From Michael Fuhr
Subject Re: problem with postgres
Date
Msg-id 20050203064920.GA47031@winnie.fuhr.org
Whole thread Raw
In response to problem with postgres  ("Luiz Rafael Culik Guimaraes" <culikr@brturbo.com.br>)
List pgsql-sql
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/


pgsql-sql by date:

Previous
From: Michael Fuhr
Date:
Subject: Re: plpgsql functions to 'C' functions
Next
From: Richard Huxton
Date:
Subject: Re: problem while converting sybase quries to postgres