Re: Sequences

From: Bruno Wolff III <bruno(at)wolff(dot)to>
To: Danny Morgan <dmorgan(at)corpmedia(dot)com>
Cc: pgsql-admin(at)postgresql(dot)org
Subject: Re: Sequences
Date: 2002-10-28 21:42:10
Message-ID: 20021028214210.GA30735@wolff.to
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin

On Mon, Oct 28, 2002 at 14:00:44 -0500,
Danny Morgan <dmorgan(at)corpmedia(dot)com> wrote:
> I have a strange dilemma. I've created a couple sequences I can't
> remove.
>
> Here is an example
>
> I can
> CREATE SEQUENCE "count1" ..........;
> DROP SEQUENCE count1;
>
> I can't
> CREATE SEQUENCE "count1ListItems1" ..........;
> DROP SEQUENCE count1ListItems1;

Try:
DROP SEQUENCE "count1ListItems1";

(Quoting preserves capitalization.)

In response to

  • Sequences at 2002-10-28 19:00:44 from Danny Morgan

Browse pgsql-admin by date

  From Date Subject
Next Message David Bear 2002-10-28 21:48:25 pg_hba.conf on win32
Previous Message Danny Morgan 2002-10-28 19:00:44 Sequences