Re: DB Files

From: Torsten Förtsch <tfoertsch123(at)gmail(dot)com>
To: Andy Hartman <hartman60home(at)gmail(dot)com>
Cc: "pgsql-general(at)lists(dot)postgresql(dot)org" <pgsql-general(at)lists(dot)postgresql(dot)org>
Subject: Re: DB Files
Date: 2024-11-15 15:49:38
Message-ID: CAKkG4_m9YA0kqaLMedzhfAG+hrYJa76pWzKB0_r9708ZiVXKRw@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

PG normally splits table data into 1GB chunks. The number before the dot is
called the filenode. You can translate it into a table name by

select oid::regclass::text from pg_class where relfilenode='2474695';

I believe there is an option to change that chunk size but you'd have to
recompile Postgres. The setting you need to change is called segment_size.

See https://www.postgresql.org/docs/current/runtime-config-preset.html

On Fri, Nov 15, 2024 at 3:27 PM Andy Hartman <hartman60home(at)gmail(dot)com>
wrote:

> I created a new table (V16) and then used SimplySql to take data from
> mssql to the new Postgres table. The table is 212gig in size. Myquestion
> comes from the files created on the OS(Windows2022 server) I can see lots
> of files with the last being:
>
> 2474695.143
>
> They are all 1,048,576kb
>
> Is this normal behaviour and could I have done something to use fewer
> files and larger ones?
>
>
> This table is created in a separate tablespace on a dedicated drive on the
> windows file system.
>
> I'm just getting involved in this PostgreSql instance
>
> THanks.
>

In response to

  • DB Files at 2024-11-15 14:27:36 from Andy Hartman

Browse pgsql-general by date

  From Date Subject
Next Message Andy Hartman 2024-11-15 15:49:57 Re: DB Files
Previous Message Adrian Klaver 2024-11-15 15:48:10 Re: Retrieve filename within a script