Re: Multiple table entries?

From: Greg Stark <gsstark(at)mit(dot)edu>
To: Jeff Ross <jross(at)wykids(dot)org>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: Multiple table entries?
Date: 2009-08-23 03:40:41
Message-ID: 407d949e0908222040m589c3d5vb04419fa1853708@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On Sun, Aug 23, 2009 at 4:06 AM, Jeff Ross<jross(at)wykids(dot)org> wrote:
> Greg Stark wrote:

>> Actually, I wonder if this isn't more likely to show the problem -- it
>> would explain why *all* your tables are showing up with duplicates
>> rather than just one.
>>
>> select xmin,xmax,ctid,oid,* from pg_namespace
>
> http://openvistas.net/pg_namespace_query.html

Yeah, that's a problem. Would you be able to load the pageinspect
contrib module and run a query?

select (h).* from (select
heap_page_items(get_raw_page('pg_namespace',0)) as h from p) as x;

--
greg
http://mit.edu/~gsstark/resume.pdf

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Greg Stark 2009-08-23 05:34:33 Re: Multiple table entries?
Previous Message Jeff Ross 2009-08-23 03:06:29 Re: Multiple table entries?