Re: DB Design

Mark Kirkwood <markir@paradise.net.nz>

From: Mark Kirkwood <markir@paradise.net.nz>
To: "Michael Ryan S. Puncia" <mpuncia@census.gov.ph>
Cc: pgsql-performance@postgresql.org
Date: 2004-05-20T09:28:28Z
Lists: pgsql-performance
The complete answer is probably "it depends", but this does not help 
much...:-)

I would try out the simple approach first (i.e one 50 million row 
table), but read up about :

i) partial indexes and maybe
ii) clustering
iii) think about presorting the data before loading to place "likely to 
be accessed" rows "close" together in the table (if possible).
iv) get to know the analyze, explain, explain analyze commands....

Best wishes

Mark

Michael Ryan S. Puncia wrote:

> Hi Guys,
>
>   
>
>       My question is .. which is better design
>
>  
>
>    1. Single Table with 50 million records or
>    2. Multiple Table using inheritance to the parents table
>
>  
>
>  
>
> I will use this only for query purpose ..
>
>  
>
> Thanks ..
>
>  
>
>  
>