I am getting the following message when trying to select * from the U2 data files.
[U2][UCINET][UNIDATA]:Multi-value or multi-subvalue are not supported in this version\r\n"
Is there a version that does not get this error, if I select only one field I do not get the error.
You need to set property “FirstNormalForm=false” in U2ConnectionStringBuilder Class. For example:
For UniVerse Database:
SQL Statement : SELECT FNAME,PRICE,BUY_DATE FROM UNNEST CUSTOMER ON ORDERS
(PRICE and BUY_DATE are multi-valued attributes)
For UniData Database:
SQL Statement : SELECT * FROM STUDENT UNNEST NL_ALL CGA
(FNAME,…,SEMESTER are multi-valued attributes)