Hi,
When we try to create a new feature class using the Esri Geodatabase (ArcSDE Geodb) writer, we get the following error:
Geodatabase Writer: Creating feature class `OBJ.Duikers_2017'
An error occurred while attempting to create the feature class 'OBJ.Duikers_2017'. The error number from ArcObjects is: '-2147216072'. The error message from ArcObjects is: {Underlying DBMS error gORA-13224: geen tolerantie opgegeven voor laag in USER_SDO_GEOM_METADATA
ORA-06512: in "MDSYS.MD", regel 1723 ORA-06512: in "MDSYS.MDERR", regel 17
ORA-06512: in "MDSYS.SDO_GEOM_TRIG_INS1", regel 39 ORA-04088: Fout bij uitvoering van trigger 'MDSYS.SDO_GEOM_TRIG_INS1'.]}
A fatal error has occurred. Check the logfile above for details
I think the correct translation for the ORA-13224 message is:
ORA-13224: zero tolerance specified for layer in USER_SDO_GEOM_METADATA
In you can find the sql statements that are executed by the trigger MDSYS.SDO_GEOM_TRIG_INS1 that raises the error.
The problem seems to be that no tolerance value is provided when a row for the new table is inserted into USER_SDO_GEOM_METADATA.
So our question is: Where can we specify a tolerance value in the writer?
Willy