From: | Viktor Bojović <viktor(dot)bojovic(at)gmail(dot)com> |
---|---|
To: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
Cc: | pgsql-admin(at)postgresql(dot)org |
Subject: | Re: unknown type |
Date: | 2011-05-04 14:03:20 |
Message-ID: | BANLkTinm0JjoJgV9wWuT1hdkgOqucRnbyw@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-admin |
On Wed, May 4, 2011 at 3:58 PM, Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> wrote:
> =?UTF-8?Q?Viktor_Bojovi=C4=87?= <viktor(dot)bojovic(at)gmail(dot)com> writes:
> > while restoring backup i have received these messages
> > WARNING: column "id" has type "unknown"
> > DETAIL: Proceeding with relation creation anyway.
>
> It's most likely a view with an output column that's an undecorated
> string literal.
>
> > I have tried to grep schema-only dump file, but i didn't find word
> unknown.
> > When i have extracted all mentioned ID fields i didn't find any field
> which
> > is not of type integer,smallint or varchar.
>
> > How can i find out which table has that unknown type?
>
> Try something like
>
> select attrelid::regclass, attname from pg_attribute where atttypid =
> 'unknown'::regtype;
>
> regards, tom lane
>
that solved the problem. thanx
--
---------------------------------------
Viktor Bojović
---------------------------------------
Wherever I go, Murphy goes with me
From | Date | Subject | |
---|---|---|---|
Next Message | adrien ducos | 2011-05-04 16:11:23 | My server is oddly very slow |
Previous Message | Tom Lane | 2011-05-04 13:58:11 | Re: unknown type |