Re: ALTER TABLE tabla ALTER COLUMN columna SET STATISTICS number

Поиск
Список
Период
Сортировка
От Michael Fuhr
Тема Re: ALTER TABLE tabla ALTER COLUMN columna SET STATISTICS number
Дата
Msg-id 20050706200752.GA33295@winnie.fuhr.org
обсуждение исходный текст
Ответ на ALTER TABLE tabla ALTER COLUMN columna SET STATISTICS number  ("Dario" <dario_d_s@unitech.com.ar>)
Список pgsql-performance
On Wed, Jul 06, 2005 at 04:49:21PM -0300, Dario wrote:
> where is stored the value set by ALTER TABLE table_name ALTER COLUMN
> column_name SET STATISTICS = [1-1000]?

pg_attribute.attstattarget

Example query:

SELECT attrelid::regclass, attname, attstattarget
FROM pg_attribute
WHERE attstattarget > 0;

See the "System Catalogs" chapter in the documentation for more
information.

--
Michael Fuhr
http://www.fuhr.org/~mfuhr/

В списке pgsql-performance по дате отправления:

Предыдущее
От: "Dario"
Дата:
Сообщение: ALTER TABLE tabla ALTER COLUMN columna SET STATISTICS number
Следующее
От: Niccolo Rigacci
Дата:
Сообщение: CURSOR slowes down a WHERE clause 100 times?