Re: SET SEQSCAN TO OFF - error

From: Jeff Hoffmann <jeff(at)propertykey(dot)com>
To: Hans-Jürgen Schönig <hs(at)cybertec(dot)at>
Cc: pgsql-sql(at)postgresql(dot)org
Subject: Re: SET SEQSCAN TO OFF - error
Date: 2001-04-26 14:42:23
Message-ID: 3AE833CF.32B60F5A@propertykey.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Hans-Jürgen Schönig wrote:
>
> I have the command below like it is described in the documentation
> (http://www.archonet.com/pgdocs/force-index.html) but it doens't work.
>
> SET SEQSCAN TO OFF;
> ERROR: 'seqscan' is not a valid option name
>
> Does anybody know why?
>

because the documentation is wrong. the variable name is
ENABLE_SEQSCAN, i.e.:

SET ENABLE_SEQSCAN TO OFF;

should work.

--

Jeff Hoffmann
PropertyKey.com

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Tom Lane 2001-04-26 14:45:52 Re: Regexps -- too complex?
Previous Message Peter Eisentraut 2001-04-26 14:40:25 Re: SET SEQSCAN TO OFF - error