Re: Column Sizes - Mailing list pgsql-general

From Adam Ruth
Subject Re: Column Sizes
Date
Msg-id 820AE32D-154D-11D8-94C7-000A959D1424@intercation.com
Whole thread Raw
In response to Column Sizes  ("Brett Maton" <brett.maton@itaccounting.co.uk>)
List pgsql-general
On Nov 12, 2003, at 11:04 AM, Brett Maton wrote:

> Hi NG,
>
>   How do I find out the size of a column ?
>
>   I am retrieving large objects from the pg_largeobject table and
> creating a
> files, I would like to know the length of the data column so that I can
> implement buffering instead of writing hundreds of small chunks to
> disk.
>
> Any help would be appreciated.
>
> Thanks in advance,
>
>  Brett
>
>

I always check for the size this way:

select sum(length(data)) from pg_largeobject where loid = xxx;

Or if you want to know the size of an individual page:

select pageno, length(data) from pg_largeobject where loid = xxx order
by pageno;

Hope this help,

Adam Ruth


pgsql-general by date:

Previous
From: Stephan Szabo
Date:
Subject: Re: using NOLOCK cause Cartesian joins
Next
From: Alvaro Herrera
Date:
Subject: Re: SQL-question: returning the id of an insert querry