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'
サインインしたメンバーは投稿、更新のフォローなどができます。初めてですか?無料アカウントを登録してください。
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.