Query data in INSTANCEPROMOTEDPROPERTIES
Posted: Tue 01 Jul 2014 18:48
When using dotConnect for Oracle, I noticed that promoted properties are stored as T_VARCHAR_ARRAY. For example, here is the SQL statement to insert a record into the InstancePromtedProperties table:
Insert into InstancePromtedProperties (SIMPLEVALUES) values (T_VARCHAR_ARRAY('Hello world!'));
When I try to query the value in T_VARCHAR_ARRAY, I used the following SQL statement:
SELECT SIMPLEVALUES IN InstancePromtedProperties
But the return is T_VARCHAR_ARRAY('Hello world!'). I am not familiar with T_VARCHAR_ARRAY. What should be the SQL query to return the text 'Hello world' instead? Thanks!
Insert into InstancePromtedProperties (SIMPLEVALUES) values (T_VARCHAR_ARRAY('Hello world!'));
When I try to query the value in T_VARCHAR_ARRAY, I used the following SQL statement:
SELECT SIMPLEVALUES IN InstancePromtedProperties
But the return is T_VARCHAR_ARRAY('Hello world!'). I am not familiar with T_VARCHAR_ARRAY. What should be the SQL query to return the text 'Hello world' instead? Thanks!