【发布时间】:2011-05-21 17:37:20
【问题描述】:
当我尝试在下表中插入记录时出现错误“ora-03001:未实现的功能”。我已经搜索了一夜,仍然没有运气。我用的是Oracle10g express版。
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'));
【问题讨论】:
-
既然可以轻松下载完整版,为什么还要使用表达式版?
-
我是新手,我认为速成版是免费的。
-
完整版可免费用于自学。适用于商业用途的许可证。
-
并不是说在这种情况下使用XE与错误有关。
标签: database oracle oracle-xe oracle-type