SQL> create type type1 as object
2 (
3 col1 varchar2(10),
4 col2 varchar2(10)
5* )
SQL> /
create type type1 as object
*
ERROR 發(fā)生在第 1 行:
ORA-00439: 特性無法啟用: Objects
解決方法:
安裝時選擇Oracle8 Objects Option就行了
同樣,要想啟用分區(qū)特性,安裝時選擇Oracle8 Partitioning Option就行了
SQL> col PARAMETER format a35
SQL> col VALUE format a35
SQL> select * from v$option;