Hey guys
A client is writing data to the COR_OUTBOX_ENTRY and COR_OUTBOX_HEADER tables from their application using SQL.
The data they are writing to the C_XML column is being written thus: -
DECLARE @Disp XML
SET @Disp =
'<Products>
<Product>
<ID>25</ID>
<Name>Hamam</Name>
<Price>15.5</Price>
<Category name="IN">Infor</Category>
</Product>
</Products>'
Declare @DispBinary Varbinary(max)
set @DispBinary = CONVERT (varbinary(max),@Disp,1)
The value of @DispBinary is then being written to the C_XML column.
However, in OneView, the data is being displayed as: -

Does anybody have any thoughts on how the data should be formatted in SQL to correct this?
Thanks
Neil