如何正确建立TYPE、partition(分区)?
软件环境:
1、Windows NT4.0+ORACLE 8.0.4
2、ORACLE安装路径为:C:\ORANT
错误现象:
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;
【最后更新: 06/03/2002 10:21:48 】