Hi,
I'm trying to get all the attributes of all spatial tables in an Oracle schema.
For this I start with a SQLCreator. It runs a query that gets table names from user_objects. The SQL creator exposes TABLE_NAME. I connect the Result port to a FeaureReader. I set this up as follows:
Feature Types to Read: TABLE_NAME.
,Generic> Port Attributes to Expose: *
When I run the workspace, I see the correct number of records coming out in the < Generic> port. However, not per attribute. In the log I see that a select is performed with all attributes. (Select schema_name.coloumn_a, schema_name.coloumn_b, schema_name.coloumn_c etc.).
When I connect an attribute exploder to the generic port I see all attributes with content but then they are shown separately and no longer per record.
Is it possible to dynamically retrieve all tables and then show all attributes of all these tables per record?