Given the functions in my python application, I would rather use the new data access module and Search Cursors to access my data and iterate through an object.Planning for the future, which method would produce quicker results when scaled upwards (more features)? with arcpy.da.SearchCursor("myFeature", ["OBJECTID"]) as cursor: rows = sorted({row[0] for row in cursor}) count = 0 for row in rows: count += 1or arcpy.MakeTableView_management("myFeature", "myTableView") count = int(arcpy.GetCount_management("myTableView").getOutput(0))Cheers