I have created structured part for the XMLIndex with this command.
BEGIN
DBMS_XMLINDEX.registerParameter(
'XXX',
'ADD_GROUP GROUP YYY
XMLTable TABLE_NAME ''/entity/year''
COLUMNS year BINARY_DOUBLE PATH ''text()''');
END;
/
ALTER INDEX INDEX_NAME PARAMETERS('PARAM XXX');
XXX - is a parameter name YYY - is a group name
I don't remember XXX and YYY names now and can't drop group and corresponding parameter.
Q: How could I list all parameters registered for XMLIndex?