BLOB Creation [message #53116] |
Wed, 28 August 2002 10:06 |
jhonken
Messages: 1 Registered: August 2002
|
Junior Member |
|
|
I'm trying to create a table with a BLOB in it. I'm using the following script:
CREATE TABLE eliglog_history (
transaction_id NUMBER(9,0) DEFAULT 0 NOT NULL,
request blob,
response blob)
TABLESPACE test
/
I get the error "ERROR at line 1:
ORA-03001: unimplemented feature
"
Can someone please tell me what is wrong. I'm using Oracle 9i on Linux. Thanks
|
|
|
Re: BLOB Creation [message #53117 is a reply to message #53116] |
Wed, 28 August 2002 10:40 |
SKS
Messages: 26 Registered: February 2002
|
Junior Member |
|
|
This problem is caused by a documented restriction of the use of
SEGMENT SPACE MANAGEMENT in 9.0.1 - LOBs cannot be stored in tablespaces created
with SEGMENT SPACE MANAGEMENT set to AUTO.
|
|
|
|