[GIS] Importing Feature Class to Oracle SDE Geodatabase Simplifies Features

arcgis-10.2enterprise-geodatabaseesri-geodatabaseoracle-dbms

I recently imported a feature class from a File Geodatabase to an Oracle SDE Geodatabase. The features of the two feature classes now look drastically different despite not having any edits made.
enter image description here

The green polygon is the original feature as it looked in the file geodatabase. The purple transparent polygon on top is the feature after being imported into the Oracle SDE Geodatabase. It's as if the act of importing the feature class simplified the features.

Any ideas on why that would happen? I am new to Oracle and ArcSDE, maybe I set something up incorrectly?

Here is another view of the same area, with different symbology:
enter image description here

The storage format is ST_GEOMETRY, and there was no conversion performed, as far as I know, I simply imported the feature class into the Oracle SDE geodatabase from the file geodatabase.

Best Answer

The two most likely causes (that I can think of) are;

1) The SDE Geodatabase configuration keyword includes a PRECISION statement and you likely have converted the feature class form high precision to single precision. -- In most storage projections (we use Stateplane, for example) there is insufficient precision to get fine detail so vertices coalesce and shapes morph. NOTE that configuration keywords are used when using "copy/paste" to move geodatabases into- and out-of SDE.

2) The ArcCatalog environment settings >> Coverage section includes a Precision option for the default when creating new featureclasses. Similar to the keyword option above, the precision should most often be set to DOUBLE so that the coordinates for new featureclasses have sufficient numeric precision to handle fine geometric details.

So, check the environment settings on your client software (ArcCatalog > Geoprocessing > Environments... > Coverage > Precision) and work with your SDE administrator to review the KEYWORD settings.

As a quick test to determine if SDE is or is not the problem, try to copy/paste this featureclass from your source File GDb to a new Personal GDb. This process will make use of the Environment setting for new featureclasses and has nothing to do with SDE. If you get the problem results, then you know the problem is NOT SDE, but is your client software.