Hello,
The following code produces an the following error:
fc_mem_1 = r"memory\temp_1"
...
fc_mem_2 = r"memory\temp_2" # memory fails, use in_memory
arcpy.analysis.PairwiseDissolve(fc_mem_1, fc_mem_2, 'cl_id', statistics_fields=stat_fields, multi_part='MULTI_PART')

While the following code does not produce an error:
fc_mem_1 = r"memory\temp_1"
...
fc_mem_2 = r"in_memory\temp_2"
arcpy.analysis.PairwiseDissolve(fc_mem_1, fc_mem_2, 'cl_id', statistics_fields=stat_fields, multi_part='MULTI_PART')
I understand in_memory to be a legacy workspace. Is this expected behavior with PairwiseDissolve and Dissolve?
Thank you,
Tyler
ArcGIS Pro 3.1.0