I want to write features to an Oracle database. Some featuretypes have geometry others are non-spatial. Tables are created by the writer, schema is dynamic and read from a FME schema txt file.
If I use Oracle Spatial Object writer ALL features get a GEOM attribute and are treated as if they are spatial.
So I tried to optimize the workflow and use a second writer - an Oracle non-spatial writer - for the non-spatial features.
This improved performance considerably, as I have 50% non-spatial features.
Problem:
Oracle Spatial Object Writer ALWAYS creates tables with UPPERCASE names (and converts them if necessary) while Oracle non-spatial writer ALWAYS creates the tables as they are in the controlling attribute.
In this way I cannot use the same schema definition file for both writers.
Anything I missed out on ?