I too get this behaviour. I get around it by creating the table view in this manner.arcpy.MakeTableView_management(data, table, 'OBJECTID < 100')As opposed to this, if this is how you are doing it.table = arcpy.MakeTableView_management(data) table.definitionQuery = 'OBJECTID < 100'
arcpy.MakeTableView_management(data, table, 'OBJECTID < 100')
table = arcpy.MakeTableView_management(data) table.definitionQuery = 'OBJECTID < 100'
Angemeldete Mitglieder können Beiträge verfassen, Updates folgen und mehr. Neu hier? Registriere ein kostenloses Konto.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.