"xmlns:xsi" getting auto-generated

Post questions here relative to DataStage Enterprise/PX Edition for such areas as Parallel job design, Parallel datasets, BuildOps, Wrappers, etc.

Moderators: chulett, rschirm, roy

Post Reply
sarathchandrakt
Participant
Posts: 50
Joined: Fri Aug 29, 2014 1:32 pm
Location: Mumbai

"xmlns:xsi" getting auto-generated

Post by sarathchandrakt »

Hi,

I modified a .xsd file to show NULL fields in XML. I modified the code in following format,

Old Code:
<xs:element name="FirstName" type="xs:string"/>

New Code:
<xs:element name="FirstName" Nillable="true" type="xs:string"/>

I can see the Null Columns now, But the following line is getting auto generated in tags,
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

Example:
<FirstName xsi:nil="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" />

I know that this is not going to effect data in any way but is there any way to hide this???
Post Reply