| From: | "Paulo Roberto Siqueira" <paulo(dot)siqueira(at)usa(dot)net> |
|---|---|
| To: | "PGSQL Admin" <pgsql-admin(at)postgresql(dot)org> |
| Subject: | pg_dump problem |
| Date: | 2000-08-02 01:20:40 |
| Message-ID: | NEBBLMEAPMNMMCFDDILOKENPCBAA.paulo.siqueira@usa.net |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-admin |
PgSQL 7.0.2
I used pg_dump to dump the schema of a db. I created table part_presencial
with this command
create table part_presencial(
login char(15) not null,
id_curso_polo int4 not null,
data_encontro date not null,
nota numeric(2,2) null,
foreign key(login,id_curso_polo) references matricula,
foreign key(id_curso_polo,data_encontro) references presencial,
primary key(login,id_curso_polo,data_encontro));
But pg_dump gives me this:
CREATE TABLE "part_presencial" (
"login" char(15) NOT NULL,
"id_curso_polo" int4 NOT NULL,
"data_encontro" date NOT NULL,
"nota" numeric(2,2),
PRIMARY KEY ("login", "id_curso_polo", "data_encontro")
);
Why doesn't pg_dump give me foreign keys constraints? It happens to all the
tables with foreign keys.
-----
Paulo Roberto Siqueira
paulo(dot)siqueira(at)usa(dot)net
Database Administrator
Goiania - GO - Brazil
| From | Date | Subject | |
|---|---|---|---|
| Next Message | CARLOS KAZUMI SAITO | 2000-08-02 09:21:03 | pgAdmin v7.0.1 |
| Previous Message | ryan | 2000-07-31 21:50:54 | Re: Installation problem |