Re: changing sequence in serial field

From: Achilleas Mantzios <achill(at)matrix(dot)gatewaynet(dot)com>
To: pgsql-admin(at)postgresql(dot)org
Subject: Re: changing sequence in serial field
Date: 2008-07-03 15:08:47
Message-ID: 200807031808.47683.achill@matrix.gatewaynet.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin

Στις Thursday 03 July 2008 17:19:48 ο/η Julius Tuskenis έγραψε:
> Hello
>
> I noticed, that some serial field is using wrong sequence, so I altered
> the default value pointing to the sequence I want, but now I cant delete
> currently no longer used sequence. Did I do someting wrong changing it?
>
> PgSQL 8.1 on Gentoo Linux.
>
>
> What I try to do
> DROP SEQUENCE b_prekes_br_kodas_pbk_id_seq1;

try
ALTER SEQUENCE b_prekes_br_kodas_pbk_id_seq1 OWNED BY NONE;
first, adn then drop.

>
> Result
> ERROR: cannot drop sequence b_prekes_br_kodas_pbk_id_seq1 because table
> b_prekes_br_kodas column pbk_id requires it
> HINT: You may drop table b_prekes_br_kodas column pbk_id instead.
>
> ********** Error **********
>
> ERROR: cannot drop sequence b_prekes_br_kodas_pbk_id_seq1 because table
> b_prekes_br_kodas column pbk_id requires it
> SQL state: 2BP01
> Hint: You may drop table b_prekes_br_kodas column pbk_id instead.
>
> --
> Julius Tuskenis
> Programavimo skyriaus vadovas
> UAB nSoft
> mob. +37068233050
>
>

--
Achilleas Mantzios

In response to

Responses

Browse pgsql-admin by date

  From Date Subject
Next Message Dev 2008-07-03 16:07:23 Best way to limit database sizes
Previous Message Julius Tuskenis 2008-07-03 14:19:48 changing sequence in serial field