Re: is this a bug ?

Поиск
Список
Период
Сортировка
От Jaime Casanova
Тема Re: is this a bug ?
Дата
Msg-id c2d9e70e050616101772429a56@mail.gmail.com
обсуждение исходный текст
Ответ на is this a bug ?  (Cedric BRINER <work@infomaniak.ch>)
Список pgsql-general
On 6/16/05, Cedric BRINER <work@infomaniak.ch> wrote:
> hi,
>
> I'm facing this problem
>
> DROP TABLE test;
> DROP TABLE new_test;
> CREATE TABLE test (id serial NOT NULL UNIQUE, nom varchar(32));
> INSERT INTO test ("nom") values ('cedric');
> INSERT INTO test ("nom") values ('felix');
> INSERT INTO test ("nom") values ('julien');
>
> CREATE TABLE new_test (id serial NOT NULL UNIQUE, nom varchar(32));
> INSERT INTO new_test SELECT * FROM test;
>
Why create the table with a serial field if you're going to drop the
seq anyway just making it integer and this way you avoid your problem?

> ALTER TABLE new_test ALTER COLUMN id SET DEFAULT nextval('public.test_id_seq');
> DROP TABLE test;
>
> ALTER TABLE new_test RENAME TO test;
> ALTER TABLE new_test_id_key RENAME TO test_id_key;
>
> DROP SEQUENCE new_test_id_seq ;
> -- this give an error... is this normal
>
> is this the normal behaviour ?
>


--
Atentamente,
Jaime Casanova
(DBA: DataBase Aniquilator ;)

В списке pgsql-general по дате отправления:

Предыдущее
От: "Matthew T. O'Connor"
Дата:
Сообщение: Re: pgavd status
Следующее
От: Collin Peters
Дата:
Сообщение: Extremely slow performance with 'select *' after insert of 37,000 records