Re: Can't access table to describe, drop, or select, but it - Mailing list pgsql-bugs

From Stephan Szabo
Subject Re: Can't access table to describe, drop, or select, but it
Date
Msg-id 20030919083048.R212@megazone.bigpanda.com
Whole thread Raw
In response to Can't access table to describe, drop, or select, but it does exist  ("Josh Eno" <Josh@always24x7.com>)
List pgsql-bugs
On Thu, 18 Sep 2003, Josh Eno wrote:

> The reason I'd never noticed the table is because in doing a \d it
> doesn't show up in the table list.  If I try to do a \d TABLE_NAME, I
> can use <tab> to autocomplete the name, but then it says the table
> doesn't exist.  I can't select any of those 40,000 rows while I'm in the
> database, and I can't drop it, either.  The only evidence of the table I
> can find while I'm actually in the database is by doing a select * from
> pg_tables, and it shows up as the following:

You need to say things like:
\d "ROOT_U_QUICK_LOOKUP"
or
select * from "ROOT_U_QUICK_LOOKUP"
(note the double quotes to prevent casefolding).

It's interesting that \d FOO
gives an error message referencing "FOO"
since it's actually looking for a table that's been
case-folded.  I think the error message is incorrect.

pgsql-bugs by date:

Previous
From: "Josh Eno"
Date:
Subject: Can't access table to describe, drop, or select, but it does exist
Next
From: Edmund Bacon
Date:
Subject: create temporary sequence and ecpg