如何正确建立TYPE、partition(分区)?
|
|
|
作者:佚名
来源:InterNet 加入时间:2003-7-20 |
- 软件环境:
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;
[文章录入员:tonny] |
|
|
|
|