Re: DROP TABLE Appears to Fail

From: John R Pierce <pierce(at)hogranch(dot)com>
To: pgsql-general(at)postgresql(dot)org
Subject: Re: DROP TABLE Appears to Fail
Date: 2011-06-28 23:07:32
Message-ID: 4E0A5EB4.50009@hogranch.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

> postgres=# drop table foo
> postgres-# \d

specifically note the prompt. the -# means you're in the middle of a
command. =# means its ready for a new command.

as another example...

pierce=# create table foo (id integer);
CREATE TABLE
pierce=# drop
pierce-# table
pierce-# foo
pierce-# ;
DROP TABLE
pierce=#

--
john r pierce N 37, W 122
santa cruz ca mid-left coast

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Greg Smith 2011-06-28 23:11:40 Re: Setup postgres with automatic table and user intitiallisation
Previous Message Rob Sargent 2011-06-28 23:04:54 Re: Multi-tenancy in Postgres