Estimating a table size

Поиск
Список
Период
Сортировка
От Rodrigo Sakai
Тема Estimating a table size
Дата
Msg-id 001b01c6dda0$723b90d0$4700a8c0@TREEZANTHUS
обсуждение исходный текст
Ответы Re: Estimating a table size  ("Guido Barosio" <gbarosio@gmail.com>)
Re: Estimating a table size  ("Talha Khan" <talha.amjad@gmail.com>)
Список pgsql-admin

  Hello all,

 

  I need a tool or something like it, which can give me the estimated size of a table considering all fields, constraints, indexes, etc...

 

  For example:

 

 

  CREATE TABLE products (

     product_id INT8,

     product_name VARCHAR(50),

     product_vendor VARCHAR(50),

     price NUMERIC(10,2),

 

     CONSTRAINT pk_products PRIMARY KEY (product_id),

     CONSTRAINT ck_price CHECK (price >= 0)

);

 

 

CREATE INDEX ix_products ON products (product_name);

 

 

  See that in the example above I have, some fields, some constraints and one index. I want to know (estimate) how much fisical space (KB, MB) it will consume!

 

 

  Thanks in advance!

   

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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: psql: FATAL: the database system is starting up
Следующее
От: "theman"
Дата:
Сообщение: Re: psql: FATAL: the database system is starting up