Hi,
I need a help on getting primary key values repeated times from the xml.Here is the xml file.
<?xml version="1.0" encoding="UTF-8"?>
<request id="test">
<dataSets>
<dataSet name="dim_table" friendlyName="dim" tableType="DIM">
<fields>
<field name="customer_id" dataType="varchar" primaryKey="true"/>
<field name="customer_name" dataType="VARCHAR" primaryKey="false"/>
<field name="customer_address" dataType="CHAR" primaryKey="false"/>
</fields>
</dataSet>
</dataSets>
</request>
the required output is
KeycolumnName,Columnname
customer_id,customer_id
customer_id,customer_name
customer_id,customer_address
Can anyone help me on this?