以下の表にレコードを挿入しようとすると、「ora-03001: 実装されていない機能」というエラーが発生しました。私は一晩中検索しましたが、まだ運がありません。私は Oracle10g Express Edition を使用しています。
create or replace type MajorsType As varray(20) of varchar2(10);
create or replace type studenttype as object (
stuID varchar2(5),
lastName varchar2(15),
firstName varchar2(12),
majors MajorsType)
INSTANTIABLE
NOT FINAL;
create table Student of StudentType (
constraint student_stuID_pk PRIMARY KEY(stuID));
INSERT INTO student values StudentType ('S999', 'Smith', 'John', MajorsType('Math', 'Accounting'));