Hi. Can anyone see what's wrong with this simple code?
dup_fields = ["Shape"]
out_table = "M:\\GIS\\Test\\table_of_dup_records"
xy_tol = ".01 Feet"
arcpy.FindIdentical_management(parcels_all_data1, dup_fields, out_table, xy_tol)
Error returned:
Traceback (most recent call last):
File "X:\08_Tools\02_Python\UTCModel1.1_Parcel_Prep.py", line 82, in <module>
arcpy.FindIdentical_management(parcels_all_data1, dup_fields, out_table, xy_tol)
File "C:\Program Files (x86)\ArcGIS\Desktop10.0\arcpy\arcpy\management.py", line 3092, in FindIdentical
raise e
RuntimeError: Object: Error in executing tool
Parcels are defined higher up and are used for other successful tools.
Thanks for your input.
Rich