根据我说的Oracle服务器上,同样创建表的DDL语句可以成功或失败:
在服务器#1
Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
SQL> create table h5basic (b blob) lob(b) store as basicfile;
Table created.
SQL> create table h5basic$none (b blob) lob(b) store as basicfile (retention none);
create table h5basic$none (b blob) lob(b) store as basicfile (retention none)
*
ERROR at line 1:
ORA-43856: Unsupported LOB type for SECUREFILE LOB operation
在服务器#2
Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
SQL> create table h5basic (b blob) lob(b) store as basicfile;
Table created.
SQL> create table h5basic$none (b blob) lob(b) store as basicfile (retention none);
Table created.
两个服务器不完全一样的版本,以及Linux上的第一次运行,而第二个Windows版本,但APPART从,这可能是不同的两间来解释这种行为差异? 感谢您对解决此问题的任何提示。 --DD