RE: [Pgsql-ayuda] RV: *_seq "repetida"

From: "sandrigo lezcano" <psql(at)msa(dot)com(dot)py>
To: "Pgsql-ayuda" <Pgsql-ayuda(at)tlali(dot)iztacala(dot)unam(dot)mx>
Subject: RE: [Pgsql-ayuda] RV: *_seq "repetida"
Date: 2003-05-28 15:38:54
Message-ID: 00df01c3252f$3f15f4c0$cc08000a@msa.com.py
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-es-ayuda


si tengo mas de una tabla con autoincrement en el mismo campo como deferencio uno del otro???? ej.

CREATE TABLE "novedades_modelos"
("numero_interno" serial NOT NULL,
"legajo" integer NOT NULL
check ("legajo" >= 1),
"novedad" integer NOT NULL
check ("novedad" between 1 and 9999),
"planilla" char NOT NULL
check ("planilla" in ('1','2','3','4','5','6','7','8','9')),
"cantidad" int8 NOT NULL,
"base" int8
check ("base" is null or ("base" >= 0 )),
"factor" float8 NOT NULL
check ("factor" <> 0),
primary key ("numero_interno"),
unique ("legajo", "novedad", "planilla")
) ;

/** OK -- creado.. ..ahora

/*------ 28/05/03 08:39:09 AM --------*/

CREATE TABLE "novedades_modelos_auditoria"
("numero_interno" serial NOT NULL,
"legajo" int4 NOT NULL,
"novedad" int4 NOT NULL,
"planilla" char NOT NULL,
"cantidad" int8 NOT NULL,
"base" int8 ,
"factor" float8 NOT NULL,
"fecha_insercion" timestamp default current_timestamp ,
"usuario_insercion" varchar(60) default current_user,
primary key ("numero_interno")
) ;

/* Error : "ERROR: Relation 'novedades_mod_numero_intern_seq' already exists" */


puedo indicarle de ulguna otra manera de qe se trata de un campo en otro archivo?????

gracias..

____________________________________________________
Sandrigo Lezcano Jara Asunción, Paraguay
usando______: Ret Hat 7.2 (Enigma) - Kernel 2.4.7-10
PostgreSQL 7.1.3 - psqlODBC 7.02.00.01
migrando____: Sybase 6.5 al PostgreSQL
front end___: PowerBuilder 6.5
==================ICQ:143590717=====================
____________________________________________________

Browse pgsql-es-ayuda by date

  From Date Subject
Next Message sandrigo lezcano 2003-05-28 16:42:11 RE: [Pgsql-ayuda] ODBC Lento
Previous Message Manuel Sugawara 2003-05-28 15:38:21 Re: [Pgsql-ayuda] No me puedo conectar con otro usu