I need to iterate through each of the table records, and use the new SQL text attribute to query records from another dataset. This other dataset is in an Oracle database, so I am using the SQLExecutor transformer (where the "Initiator" is my transformed table dataset, the "SQL Statement" parameter is my SQL attribute which queries my specified table in the database). The Result output of this transformer has a group of features filtered from the database table with each assigned attributes from the Initiator. Additional manipulation of this dataset includes a spatial Disssolver based on the "Initiator" attributes. This works perfectly.
But what if I don't have an Oracle database to query? What if the dataset I want to query/filter is another data format such as an Esri file geodatabase feature class (or any other non-database format)? I need to iterate through the first dataset (table) records, and for each iteration use attribute information from the table record to run a query/filter against the second dataset (file geodatabase) and extract the results as a group of features.