Generating XML in PL/SQL and one record that contains two words is being combined into one word rand
I am generating XML in PL/SQL from a cursor, using DBMS_xmlGEN.getXML. For some reason in the output, one element that contains two words is being combined into one word. It is only occuring once in the dataset and appears to be random.- <MODULE> <PERIOD_SORT>2</PERIOD_SORT> <PERIOD_NAME>SEP-11</PERIOD_NAME> <JE_SOURCE>Project Accounting</JE_SOURCE> <JE_BATCH_ID>3029562</JE_BATCH_ID> </MODULE>- <MODULE> <PERIOD_SORT>2</PERIOD_SORT> <PERIOD_NAME>SEP-11</PERIOD_NAME> <JE_SOURCE>ProjectAccounting</JE_SOURCE> Here the module name is being combined into one word. <JE_BATCH_ID>3030585</JE_BATCH_ID> <JE_CATEGORY
0