S02009
Error Code
S02009
Error Message
Direct access using column names is not supported to retrieve data from a
stream table. Please use a SQL query instead. RefId:S02009
Probable Causes
Stream tables store and publish streaming data and support concurrent read and write. Therefore, direct access to stream tables using member variable is not allowed. This error occurs when attempting to access a stream table using column names.
For example:
id=`XOM`GS`AAPL
rt=streamTable(id);
rt.id
Solutions
Use a complete SQL statement to query a stream table.
rt.id
==> select id from rt