- 论坛徽章:
- 0
|
{ TABLE "jssdmm".audit_duty row size = 90 number of columns = 9 index size = 63 }
{ unload file name = audit00103.unl number of rows = 0 }
create table "jssdmm".audit_duty
(
duty_day date not null ,
duty_time char(6) not null ,
op_code char(12) not null ,
op_mobile char(15),
op_phone char(15),
spare_int1 integer,
spare_int2 integer,
spare_str1 char(15),
spare_str2 char(15),
primary key (duty_day,duty_time,op_code) constraint "jssdmm".pk_audit_duty
);
revoke all on "jssdmm".audit_duty from "public";
用以上语句建的表,在insert的时候报 : -691 Missing key in referenced table for referential constraint
constraint-name. 哪位大侠诊断一下,谢了先。。。 |
|