Hello,
Could anyone help me solving my problem.
I want to register XSD with encoding UTF-8 into database where encoding is set to Windows-1257.
I use:
dbms_xmlschema.registerschema('myurl', '<?xml version="1.0" encoding="UTF-8"?> <xs:schema ...', TRUE, FALSE, FALSE, FALSE);
But when I get value from ALL_XML_SCHEMAS I see: <?xml version="1.0" encoding="WINDOWS-1257"?> <xs:schema...'
Can anyone tell me why and how to change it to UTF-8?