in the Oracle database I wanted to create a schema with a table of XMLTYPE.
CREATE SCHEMA AUTHORIZATION xmlAdmin
CREATE TABLE PossibleAnswers OF XMLTYPE;
In return, I get an error of ORA-00906: missing left parenthesis.
Is there any reason why this is not working?