TABLAS ANIDADAS
Publicado por PROGRAMADOR (1 intervención) el 22/07/2004 19:59:58
TENGO LA SIGUIENTE DEFINICION
create type mytype_object as object ( field1 number(10), field2 float(10));
create type mytype_table as table of mytype_object;
create table mytable ( field1 varchar(20), field2 mytype_table)
nested table field2 store as table_field2;
ESTO FUNCIONA BIEN, PERO ME DA PROBLEMAS AL INSERTAR
UNA FILA EN LA TABLA MYTABLE
create type mytype_object as object ( field1 number(10), field2 float(10));
create type mytype_table as table of mytype_object;
create table mytable ( field1 varchar(20), field2 mytype_table)
nested table field2 store as table_field2;
ESTO FUNCIONA BIEN, PERO ME DA PROBLEMAS AL INSERTAR
UNA FILA EN LA TABLA MYTABLE
Valora esta pregunta


0