Re: Found Large Files.. what objects are they?

Поиск
Список
Период
Сортировка
От Christopher Browne
Тема Re: Found Large Files.. what objects are they?
Дата
Msg-id m3eki9skkq.fsf@knuth.knuth.cbbrowne.com
обсуждение исходный текст
Ответ на Found Large Files.. what objects are they?  ("Yudie" <yudie@axiontech.com>)
Список 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 по дате отправления:

Предыдущее
От: Stephan Szabo
Дата:
Сообщение: Re: Query is slower
Следующее
От: Karsten Hilbert
Дата:
Сообщение: Re: inserting values into types