Hi,
I am new to SAP HANA , I know that HANA does not support XML object as input to a Stored Procedure so we decided to pass XML format data as a string to a Stored Procedure as input(Java JDBC), then the Store procedure should grab that string and find those attributes values using functions and finally save it on a HANA table.
Question: Is it possible to do that with a Stored procedure in HANA.
Here is the Input value(String) for the Stored procedure:
<?xml version="1.0" encoding="UTF-16"?>
<User Id="12345678"><LastName>MOLIKOK</LastName><FirstName>MIke</FirstName><MiddleName>Mo</MiddleName></User>
Appreciate your help.
Mk