Re: Is the max size of a table limited by the max file

From: "scott(dot)marlowe" <scott(dot)marlowe(at)ihs(dot)com>
To: u15074 <u15074(at)hs-harz(dot)de>
Cc: <pgsql-general(at)postgresql(dot)org>
Subject: Re: Is the max size of a table limited by the max file
Date: 2003-06-13 21:36:20
Message-ID: Pine.LNX.4.33.0306131535360.21088-100000@css120.ihs.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On Thu, 12 Jun 2003, u15074 wrote:

> If I am right, for every table in a postgres database a file with a certain
> number is created in the postgres data directory for the according database.
>
> So my question is, if the maximum size of a table is limited by the maximum file
> size of the underlying filesystem (e.g. 2GB for ufs). Or will a new file be
> created if the limit is reached?

Good news, it's not. As of about 7.2, postgresql started splitting all
it's datafiles at the 1 gig point. so, you'll have files like this in
your base directory:

19283
19283.1
19283.2

as your table grows. Sweet, huh? :-)

In response to

Browse pgsql-general by date

  From Date Subject
Next Message scott.marlowe 2003-06-13 21:38:10 Re: [HACKERS] SAP and MySQL ... [and Benchmark]
Previous Message scott.marlowe 2003-06-13 21:33:04 Re: full featured alter table?