Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> How to control Varray!!!!
I'm using Oracle 8.15........
I'd like to insert and update by using Varray...
After creating table and type in this way i'd like to handle SUJU_JAEGO_ARRAY using PL/SQL!!!!
Please help me!!!!
/* *********************************************************** *//* YARDMAP DB LAY OUT */
/* *********************************************************** */drop table YARDDONG;
create table YARDDONG
(
dong VARCHAR2( 2),
use VARCHAR2( 1),
save VARCHAR2( 1),
quantity NUMBER(5),
tweight NUMBER(9),
cnt NUMBER(2),
suju_jaego SUJU_JAEGO_ARRAY
);
commit;
create unique index YARDDONG_ind on YARDDONG(dong); commit; Received on Tue Aug 24 1999 - 02:44:38 CDT
![]() |
![]() |