Re: problem with postgres

From: Michael Fuhr <mike(at)fuhr(dot)org>
To: Luiz Rafael Culik Guimaraes <culikr(at)brturbo(dot)com(dot)br>
Cc: pgsql-sql(at)postgresql(dot)org
Subject: Re: problem with postgres
Date: 2005-02-03 06:49:20
Message-ID: 20050203064920.GA47031@winnie.fuhr.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: 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/

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Richard Huxton 2005-02-03 09:33:41 Re: problem while converting sybase quries to postgres
Previous Message Michael Fuhr 2005-02-03 06:21:07 Re: plpgsql functions to 'C' functions