I have an ESRI Geodatabase Reader using a WHERE clause (Parameters / Advanced / .. that works good.
Now I like to import Feature Types to perform the same query.
Unforunately the Where Clause needs the feature class name in the sub-query:
(ATTR1, ATTRDATE) IN (SELECT ATTR1, MAX(ATTRDATE) FROM SDE.FCNAME GROUP BY ATTR1)
So my question is: is there a way to set the where clause on the Feature Type level instead of the Reader level? Or is there a way to replace the feature class name with a variable/link that points to the appropriate Feature Type?
I appreciate any hint
klaus