I have two feature classes that I have created in the "memory" workspace, one of which contains one polygon feature that I would like to append to the other. The schemas of both feature classes differ.
When I run the append geoprocessing tool using a script, and in the immediate Python window, the tool executes fine but the feature isn't appended to the target feature class. Is it possible to append features between two feature classes in the "memory" workspace?
src_layer = r"memory\survey_extent"
tar_layer = r"memory\new_survey_extent"
arcpy.management.Append(src_layer, tar_layer , "NO_TEST")