From: | "sandrigo lezcano" <psql(at)msa(dot)com(dot)py> |
---|---|
To: | "Pgsql-ayuda" <Pgsql-ayuda(at)tlali(dot)iztacala(dot)unam(dot)mx> |
Subject: | [Pgsql-ayuda] *_seq "repetida" |
Date: | 2003-05-28 13:53:52 |
Message-ID: | 004601c32520$92949ca0$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=====================
____________________________________________________
From | Date | Subject | |
---|---|---|---|
Next Message | Sergio Valdes | 2003-05-28 14:10:09 | [Pgsql-ayuda] Novato en Postgres |
Previous Message | Martin Marques | 2003-05-28 12:32:09 | Re: [Pgsql-ayuda] Fatal error: Call to undefined function: pg_query() |