Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have a Scenario to load the entire XML Content to the XML Field in DB.
Sample.xml
<?xml version="1.0" encoding="ISO-8859-15"?>
<ABC xmlns="http://abc.com/plms/schema/V1.1" creationDate="2019-02-27T13:44:18.622+11:00">
<DEF>data</DEF>
<GHI>data</GHI>
</ABC>
Approach :
tFileInputXML ==> tJavaRow(Store the entire XML data to Context Variable) ==> tdbrow(insert the value by casting to xml (insert into table(data) values(context.xml :: xml);)
Output:
XML Data is loaded to the XML Field in DB.
However only the below content is loaded
Missing :
Though the Log displays the above missing content. It is not being loaded to the field in DB.
When tried the manual Insert as below
insert into table(data) values('
')
Still the Version line is missing.
Appreciate your assistance here. Also please suggest if any appropriate/better design can be applied for the above scenario
Thank you