Re: Table PARTITION

Поиск
Список
Период
Сортировка
От Dinesh Pandey
Тема Re: Table PARTITION
Дата
Msg-id 20050407121301.7328453821@svr1.postgresql.org
обсуждение исходный текст
Ответ на Re: Table PARTITION  (Richard Huxton <dev@archonet.com>)
Список pgsql-sql
 
Hi Richard,

I am using postgres 8.0.1. It allows us to create TABLESPACE but I don't
know how to create PARTITION in postgres.

Can you pls tell me little more.

Thanks
Dinesh Pandey

-----Original Message-----
From: Richard Huxton [mailto:dev@archonet.com] 
Sent: Thursday, April 07, 2005 5:36 PM
To: dpandey@secf.com
Cc: 'PostgreSQL'
Subject: Re: [SQL] Table PARTITION

Dinesh Pandey wrote:
> How can we create oracle's table with partition in Postgres. (How to 
> create Table partion in postgres)
> 
> CREATE TABLE invoices
> (invoice_no    NUMBER NOT NULL, 
>  invoice_date  DATE   NOT NULL,
>  comments      VARCHAR2(500))
> 
> PARTITION BY RANGE (invoice_date)
> (PARTITION invoices_q1 VALUES LESS THAN (TO_DATE('01/04/2001',
> 'DD/MM/YYYY')) TABLESPACE users

By hand, I'm afraid (although I think people are looking into this feature
for version 8.1)

There's lots of discussion in the mail archives about how people are
handling this. You're basically looking at some combination of - partial/conditional indexes - unions - inheritance

--  Richard Huxton  Archonet Ltd




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

Предыдущее
От: Richard Huxton
Дата:
Сообщение: Re: Table PARTITION
Следующее
От: Sean Davis
Дата:
Сообщение: Re: Table PARTITION