Delete features and Append issue

1994
10
09-07-2021 08:01 AM
TonyAlmeida
Occasional Contributor II

I have a layer that is created by a python script that is used in portal and map service. It is in a SDE database and the script deletes all the features and then appends  the new features that are created by the script. The issues that I am having is that the more and more I run the script it seems as the feature class/layer gets slower. For example if I try to preview the feature class in ArcCatalog it takes a long time to display the feature class, longer than it should. The same goes for the map service,  this feature class in a Map Service. The a query from this map service takes a long time. What is the issue? Is there a better way to delete features and append features?

0 Kudos
10 Replies
JoeBorgione
MVP Emeritus

How are you deleting the features?  Does everyone of them get deleted?  If so, I suggest using truncate.  It's always done a good job for me.

That should just about do it....
0 Kudos
TonyAlmeida
Occasional Contributor II

I am using arcpy.DeleteFeatures_management. It does appear to delete them all when I use arcpy.DeleteFeatures_management.

0 Kudos
JoeBorgione
MVP Emeritus

If your workflow does indeed call for all features to be deleted, I suggest using truncate instead.

That should just about do it....
0 Kudos
TonyAlmeida
Occasional Contributor II

The feature class is Versioned and according to the help doc it can't be versioned.

0 Kudos
by Anonymous User
Not applicable
Check that again- its not applicable to databases that do not use versioning meaning if yours is versioned, it’s applicable. Kind of a double negative there in the docs.
0 Kudos
TonyAlmeida
Occasional Contributor II

The arcpy.TruncateTable_management gave me ERROR 001259: Operation not supported on a versioned table.

0 Kudos
by Anonymous User
Not applicable

Are you compressing the database at all in any of your database maintenance routines?  There are some caveats to this so it may/ may not be applicable to your environment/ database so check out the Usage.

compress 

0 Kudos
JoeBorgione
MVP Emeritus

Another argument for branch versioning: no compressing needed!!

That should just about do it....
0 Kudos
JakeSkinner
Esri Esteemed Contributor

@TonyAlmeida I second @Anonymous User for compressing the geodatabase.  You mentioned your feature class is versioned, so each time the delete features/append occurs you are adding records to the delta tables (A & D tables).  If there are 10,000 features, you are adding 10,000 new rows to the A table, and 10,000 new rows to the D table.  ArcGIS queries these tables to display/query the feature class.  The larger these tables are, the longer it will take to query/display.  

In order to compress the geodatabase, you will want to make sure there are no locks on the feature classes.  This means, you'll need to stop all ArcGIS Server services referencing data from your Enterprise Geodatabase.  Here is a tool that may be helpful for you:

https://community.esri.com/t5/data-management-documents/compress-geodatabase-tool/ta-p/908944

0 Kudos