I am trying to create a table in Oracle through the command:
CREATE TABLE xml_binary (
id NUMBER,
fv XMLTYPE)
XMLTYPE fv STORE AS BINARY XML
XMLSCHEMA "http://www.example.com/fvInteger_binary.xsd"
ELEMENT "ROOT";
However, I get the error:
ORA-43853: SECUREFILE lobs cannot be used in non-ASSM tablespace
I found in this forum a solution which would be to ignore the error through the command:
ALTER SYSTEM SET db_securefile = 'IGNORE;
I do not think it is a good solution, however.
What can I do in order to solve it properly?
Thanks in advance!