28 lines
926 B
SQL
28 lines
926 B
SQL
{ TABLE "informix".cotb00015 row size = 68 number of columns = 15 index size = 90 }
|
|
create table "informix".cotb00015
|
|
(
|
|
num_oc integer,
|
|
num_req integer,
|
|
tipo char(2),
|
|
cod_n smallint,
|
|
cod_grupo smallint,
|
|
cod_tipo smallint,
|
|
cod_sec smallint,
|
|
cantidad decimal(10,2),
|
|
precio decimal(11,3),
|
|
cod_mon integer,
|
|
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".cotb00015 from "public";
|
|
|
|
create index "informix".clave15 on "informix".cotb00015 (num_oc,tipo,num_req,cod_n,cod_grupo,cod_tipo,cod_sec);
|
|
create cluster index "informix".cotb15_1 on "informix".cotb00015 (num_oc,cod_n,cod_grupo,cod_tipo,cod_sec);
|
|
create index "informix".cotb15 on "informix".cotb00015 (num_oc,tipo);
|
|
create index "informix".cotb15_2 on "informix".cotb00015 (cod_n,cod_grupo,cod_tipo,cod_sec);
|
|
|
|
|