28 lines
791 B
SQL
28 lines
791 B
SQL
{ TABLE "informix".iptb00002 row size = 123 number of columns = 17 index size = 27 }
|
|
create table "informix".iptb00002
|
|
(
|
|
cod_cia smallint,
|
|
cod_n smallint,
|
|
cod_grupo smallint,
|
|
cod_tipo smallint,
|
|
cod_sec smallint,
|
|
descrip_esp char(30) not null,
|
|
descrip_ing char(30),
|
|
unidad_med char(4),
|
|
bodega smallint,
|
|
exist_max decimal(10,2) not null,
|
|
exist_min decimal(10,2),
|
|
dia_llegada smallint,
|
|
status_t char(1),
|
|
us_crea char(9),
|
|
fech_crea datetime year to minute,
|
|
us_mod char(9),
|
|
fech_mod datetime year to minute
|
|
);
|
|
revoke all on "informix".iptb00002 from "public";
|
|
|
|
create index "informix".ip_codigo on "informix".iptb00002 (cod_n,cod_grupo,cod_tipo,cod_sec);
|
|
create index "informix".idx_40 on "informix".iptb00002 (cod_sec);
|
|
|
|
|