SQL> create type type1 as object
2 (
3 col1 varchar2(10),
4 col2 varchar2(10)
5* )
SQL> /
create type type1 as object
*
ERROR 发生在第 1 行:
ORA-00439: 特性无法启用: Objects
解决方法:
安装时选择Oracle8 Objects Option就行了
同样,要想启用分区特性,安装时选择Oracle8 Partitioning Option就行了
SQL> col PARAMETER format a35
SQL> col VALUE format a35
SQL> select * from v$option;