Re: Strange "missing tables" problem

From: Wojtek <foo(at)twine(dot)pl>
To: Denis BUCHER <dbucherml(at)hsolutions(dot)ch>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: Strange "missing tables" problem
Date: 2009-08-23 13:29:31
Message-ID: 4A91443B.7040106@twine.pl
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Denis BUCHER wrote:
> Hello,
>
> It's even more strange :
>
why, looks logical to me :)
> # \dt customers
> Liste des relations
> Schéma | Nom | Type | Propriétaire
> --------+---------+-------+--------------
> rma | customers | table | postgres
> (1 ligne)
>
you have 1 'customers' table in 'rma' schema and (my guess) currently
you're connected as main user for this schema
> # \dt import.customers
> Liste des relations
> Schéma | Nom | Type | Propriétaire
> -----------------+---------+-------+--------------
> import | customers | table | postgres
> (1 ligne)
>
>
you have 1 'customers' table in 'import' schema
> # \dt *.customers
> Liste des relations
> Schéma | Nom | Type | Propriétaire
> -----------------+---------+-------+--------------
> import | customers | table | postgres
> rma | customers | table | postgres
> (2 lignes)
>
>
you have two tables 'customers', one in schema 'import', the other one
in schema 'rma'

I assume you want to keep two copies of this table, right?

foo

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Denis BUCHER 2009-08-23 14:00:33 Re: Strange "missing tables" problem
Previous Message Bill Bartlett 2009-08-23 13:26:06 Re: Strange "missing tables" problem