Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have a table containing an XML stored as BLOB.
I have created a query that selects only that BLOB.
With the xml file, I have created an xml schema in the metadata that maps only the fields that I am interested in.
When I use the mapping in a tFileInputXML, it works fine, I get the correct value for the fields in the tLogRow.
BUT the mapping is automatically used in the query where SELECT the BLOB (CSCHEMA.T_DETAIL.CV😞
[size=2][font=Courier]"select CSCHEMA.T_DETAIL.CV from CSCHEMA.T_DETAIL where CSCHEMA.T_DETAIL.CV is not null"[/font][/size]
It does select 2 rows, what implies that the select statement works perfectly (I have only 2 rows in my table that contain a CV), but the tLogRow shows null for the mapped values:
.--------+--------+---------.
| tLogRow_2 |
|=-------+--------+--------
|Language|PersonId|FirstName|
|=-------+--------+--------
|null |null |null |
|null |null |null |
'--------+--------+---------'
Anybody knows why is that and how to solve it ?
Thanks in advance.