Pradeep,
There is no key defined in your UPDATE_INSERT structure. There is no data in XML elements.
FYI. To use UPDATE_INSERT
<StatementName> <dbTableName action=”UPDATE_INSERT”> <table>realDbTableName</table> <access> <col1>val1</col1> <col2>val2new</col2> </access> <key1> <col2>val2old</col2> <col4>val4</col4> </key1> <key2> <col2>val2old2</col2> </key2> </dbTableName></StatementName>
To use INSERT (if you do not have key, and just need to insert into table).
<StatementName> <dbTableName action=”INSERT”> <table>realDbTableName</table> <access> <col1>val1</col1> <col2>val2</col2> </access> <access> <col1>val11</col1> </access> </dbTableName></StatementName>