On Mon, Oct 28, 2002 at 14:00:44 -0500, Danny Morgan <[EMAIL PROTECTED]> 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.) ---------------------------(end of broadcast)--------------------------- TIP 2: you can get off all lists at once with the unregister command (send "unregister YourEmailAddressHere" to [EMAIL PROTECTED])