Re: Found Large Files.. what objects are they? - Mailing list pgsql-sql

From Christopher Browne
Subject Re: Found Large Files.. what objects are they?
Date
Msg-id m3eki9skkq.fsf@knuth.knuth.cbbrowne.com
Whole thread Raw
In response to Found Large Files.. what objects are they?  ("Yudie" <yudie@axiontech.com>)
List pgsql-sql
Centuries ago, Nostradamus foresaw when yudie@axiontech.com ("Yudie") would write:
> I found bunch of large files (more than 1 gb) in one of database directory.
>
> The files looks like this:
>
>
> 69233123
>
> 69233123.1
>
>
> 69233123.2
>
> 69233123.3
>
> 69233123.4
>
> ...and so on.
>
> These large files very delay the dumping process.
>
> Anyone know what it could be & how to delete the object related? How to find a table by oid?

The phenomenon you are seeing occurs when there is a table with a
great deal of data.

Look for the table via the query:
 select * from pg_class where oid = 69233123;

Presumably these files are for a table that contains multiple GB of
data.  Or they could be for an index on a very large table.

If the data in the table/index is useless to you, you might consider
dropping the table/index.
-- 
let name="cbbrowne" and tld="gmail.com" in name ^ "@" ^ tld;;
http://www3.sympatico.ca/cbbrowne/wp.html
DO IT -- it's easier to get forgiveness than permission.


pgsql-sql by date:

Previous
From: Stephan Szabo
Date:
Subject: Re: Query is slower
Next
From: Karsten Hilbert
Date:
Subject: Re: inserting values into types