Append (Data Management)

Summary

Appends to, or optionally updates, an existing target dataset with multiple input datasets. Input datasets can be feature classes, tables, shapefiles, rasters, or annotation or dimension feature classes.

To combine input datasets into a new output dataset, use the Merge tool.

Illustration

Append tool illustration

Usage

  • Use this tool to add new features or other data from multiple datasets to an existing dataset. This tool can append point, line, or polygon feature classes, tables, rasters, annotation feature classes, or dimension feature classes to an existing dataset of the same type. For example, several tables can be appended to an existing table, or several rasters can be appended to an existing raster dataset, but a line feature class cannot be appended to a point feature class.

  • Use the Field Map parameter to control how the attribute information from the input dataset fields is transferred to the target dataset. The Field Map parameter can only be used if Use the Field Map to reconcile schema differences is specified for the Schema Type parameter.

  • Use the Field Map parameter to map or match the fields from the input datasets to fields in the target dataset.

    • Use an action to determine how the values from one or multiple fields from the input dataset will be mapped to a single field from the target dataset.
    • The available actions are First, Last, Concatenate, Sum, Mean, Median, Mode, Minimum, Maximum, Standard Deviation, and Count.
    • When using the Concatenate action, you can specify a delimiter such as a comma or other characters. Click the start of the Delimiter text box to add the delimiter characters.
    • Standard Deviation is not a valid option for single input values.
    • Use the Slice Text button on text source fields to choose which characters from an input value will be extracted to the target field. To access the Slice Text button, hover over a text field in the input fields list; then specify the start and end character positions.
    • Fields can also be mapped using Python scripts.

  • This tool will not planarize features when they are added to the target dataset. All features from both the input feature class and the target feature class will remain intact after the append, even if the features overlap. To combine, or planarize, feature geometries, use the Union tool.

  • If the Field Matching Type parameter is set to Input fields must match target fields, the schema of the input datasets must match that of the target dataset to append features.

    If the Field Matching Type parameter is set to Use the field map to reconcile field differences, the schema does not need to match. Fields from the input datasets that do not match the fields of the target dataset will not be mapped to the target dataset unless the mapping is set in the Field Map parameter. Fields in the target dataset that are not mapped to fields from the input datasets will contain null values.

    If the Field Matching Type parameter is set to Skip and warn if schema does not match, the schema of the input datasets must match that of the target dataset for features to be appended. If an input dataset contains fields that do not match fields in the target dataset, that input dataset will be omitted.

  • Because the data of the input datasets is written to an existing target dataset that has a predefined schema, you can't use the Field Map parameter to add or remove fields from the target dataset.

  • You can use this tool to insert new records and update existing records in a target dataset in the same operation (equivalent to an UPSERT database operation). Use the Matching Fields for Update parameter to specify the fields from the input dataset to match to the fields in the target dataset. For records with matching field values, any fields in the target record will be updated with values from fields with the same name in the input record. Geometry will be updated if the Update Geometry parameter is checked.

  • The input and target datasets may have different spatial references. When this is the case, the tool projects the input features to the target's coordinate system. For best results, specify an appropriate geographic transformation using the Geographic Transformations environment. If the target dataset is a map layer, the tool may apply a default transformation. In Python, there is no default transformation.

  • This tool does not perform edge matching; no adjustment to the geometry of features will be made.

  • Map layers can be used as Input Datasets parameter values. If a layer has a selection, only the selected records (features or table rows) will be used.

  • You can't use multiple input layers with the same name in this tool. Instead, use the browse button on the Geoprocessing pane to browse to the full paths of each of the Input Datasets values.

  • To use the Subtype parameter, the target dataset must have a defined subtype field and assigned subtype codes. In the Subtype parameter, provide a subtype description to assign that subtype to all new data that is appended to the target dataset.

  • This tool can be used directly on the back-end data store, server, or database for web feature layers to ensure optimal performance. For feature services that reference a geodatabase, this tool can be used with a database connection to perform large data loading operations directly to the underlying database. For hosted services on ArcGIS Enterprise, you can use the append operation from the feature layer item page or ArcGIS REST API.

    For optimal performance with hosted services on ArcGIS Online, administrators and service owners can use this tool with the ArcGIS REST API when the supportAppend property is true. Feature service append capabilities must be enabled for nonadministrative users to use the Append tool with the ArcGIS REST API.

Parameters

LabelExplanationData Type
Input Datasets

The input datasets containing the data to be appended to the target dataset. Input datasets can be point, line, or polygon feature classes, tables, rasters, annotation feature classes, or dimensions feature classes.

Tables and feature classes can be combined. If a feature class is appended to a table, attributes will be transferred; however, the features will be dropped. If a table is appended to a feature class, the rows from the input table will have null geometry.

Table View; Raster Layer
Target Dataset

The existing dataset where the data of the input datasets will be appended.

Table View; Raster Layer
Field Matching Type
(Optional)

Specifies whether the fields of the input datasets must match the fields of the target dataset for data to be appended.

  • Input fields must match target fieldsFields of the input datasets must match the fields of the target dataset. An error will be returned if the fields do not match.
  • Use the field map to reconcile field differencesFields of the input datasets do not need to match the fields of the target dataset. Fields of the input datasets that do not match the fields of the target dataset will not be mapped to the target dataset unless the mapping is explicitly set in the Field Map parameter.
  • Skip and warn if schema does not matchFields of the input datasets must match the fields of the target dataset. If any of the input datasets contain fields that do not match the target dataset, that input dataset will be omitted with a warning message.
String
Field Map
(Optional)

The field map parameter controls the transfer or mapping of fields from the input datasets to the target dataset. It can only be used when the Field Matching Type parameter is set to Use the field map to reconcile field differences.

Because the input datasets are appended to an existing target dataset with predefined fields, you cannot add, remove, or change the type of the fields in the field map.

The field map can be used to combine values from two or more input fields into a single output field.

Field Mappings
Subtype
(Optional)

The subtype description that will be assigned to all new data that is appended to the target dataset.

String
Expression
(Optional)

The SQL expression that will be used to select a subset of the input datasets' records. If multiple input datasets are specified, they will all be evaluated using the expression. If no records match the expression for an input dataset, no records from that dataset will be appended to the target dataset.

For more information about SQL syntax, see SQL reference for query expressions used in ArcGIS.

SQL Expression
Matching Fields for Update
(Optional)

The fields from the input datasets that will be used to match to the target dataset. If the values of these fields match, records from the input datasets will update the corresponding records of the target dataset.

Value Table
Update Geometry
(Optional)

Specifies whether geometry in the target dataset will be updated with geometry from the input datasets if the Matching Fields for Update parameter field values match.

  • Checked—Geometry in the target dataset will be updated if the Matching Fields for Update parameter field values match.
  • Unchecked—Geometry will not be updated. This is the default.
Boolean

Derived Output

LabelExplanationData Type
Updated Target Dataset

The updated target dataset.

Table View; Raster Layer

arcpy.management.Append(inputs, target, {schema_type}, {field_mapping}, {subtype}, {expression}, {match_fields}, {update_geometry})
NameExplanationData Type
inputs
[inputs,...]

The input datasets containing the data to be appended to the target dataset. Input datasets can be point, line, or polygon feature classes, tables, rasters, annotation feature classes, or dimensions feature classes.

Tables and feature classes can be combined. If a feature class is appended to a table, attributes will be transferred; however, the features will be dropped. If a table is appended to a feature class, the rows from the input table will have null geometry.

Table View; Raster Layer
target

The existing dataset where the data of the input datasets will be appended.

Table View; Raster Layer
schema_type
(Optional)

Specifies whether the fields of the input datasets must match the fields of the target dataset for data to be appended.

  • TESTFields of the input datasets must match the fields of the target dataset. An error will be returned if the fields do not match.
  • NO_TESTFields of the input datasets do not need to match the fields of the target dataset. Fields of the input datasets that do not match the fields of the target dataset will not be mapped to the target dataset unless the mapping is explicitly set in the Field Map parameter.
  • TEST_AND_SKIPFields of the input datasets must match the fields of the target dataset. If any of the input datasets contain fields that do not match the target dataset, that input dataset will be omitted with a warning message.
String
field_mapping
(Optional)

The field map parameter controls the transfer or mapping of fields from the input datasets to the target dataset. It can only be used when the schema_type parameter is set to NO_TEST.

Because the input datasets are appended to an existing target dataset with predefined fields, you cannot add, remove, or change the type of the fields in the field map.

The field map can be used to combine values from two or more input fields into a single output field.

In Python, use the FieldMappings class to define this parameter.

Field Mappings
subtype
(Optional)

The subtype description that will be assigned to all new data that is appended to the target dataset.

String
expression
(Optional)

The SQL expression that will be used to select a subset of the input datasets' records. If multiple input datasets are specified, they will all be evaluated using the expression. If no records match the expression for an input dataset, no records from that dataset will be appended to the target dataset.

For more information about SQL syntax, see SQL reference for query expressions used in ArcGIS.

SQL Expression
match_fields
[[target_field, input_field],...]
(Optional)

The fields from the input datasets that will be used to match to the target dataset. If the values of these fields match, records from the input datasets will update the corresponding records of the target dataset.

Value Table
update_geometry
(Optional)

Specifies whether geometry in the target dataset will be updated with geometry from the input datasets if the match_fields parameter field values match.

  • UPDATE_GEOMETRYGeometry in the target dataset will be updated if the match_fields parameter field values match.
  • NOT_UPDATE_GEOMETRYGeometry will not be updated. This is the default.
Boolean

Derived Output

NameExplanationData Type
output

The updated target dataset.

Table View; Raster Layer

Code sample

Append example 1 (Python window)

The following Python window script demonstrates how to use the Append function in immediate mode.

import arcpy
arcpy.env.workspace = "C:/data"
arcpy.management.Append(["north.shp", "south.shp", "east.shp", "west.shp"], 
                        "wholecity.shp", "TEST")
Append example 2 (Python window)

The following Python window script demonstrates how to use the Append function with the match_fields and update_geometry parameters in immediate mode.

import arcpy
arcpy.env.workspace = "C:/data/zoning.gdb"
arcpy.management.Append("Zoning_update_2040", "Zoning_2020", "TEST", 
                        match_fields=[["ZONEID", "ZONEID"]], update_geometry="UPDATE_GEOMETRY")
Append example 3 (stand-alone script)

The following script demonstrates how to use the Append function.

# Name: Append.py
# Description: Use the Append tool to combine several polygon feature classes

# Import system modules 
import arcpy
import os

# Set environment settings
arcpy.env.workspace = "C:/data/towns.gdb"

# Set local variables
outLocation = "C:/data/output.gdb"
outName = "MA_towns.shp"
schemaType = "NO_TEST"
fieldMappings = ""
subtype = ""

# Process: Append to an existing "amherst" polygon feature class
target = os.path.join(outLocation, "amherst")

# All polygon FCs in the workspace are MA town FCs, you want to append these
# to the target FC. The list will resemble ["amherst", "hadley", "pelham",
# "coldspring"]

fcList = arcpy.ListFeatureClasses("", "POLYGON")

# Create FieldMappings object to manage merge output fields
fieldMappings = arcpy.FieldMappings()

# Add the target table to the field mappings class to set the schema
fieldMappings.addTable(target)

# Add input fields for the town name to TOWNNAME field that matches the 
# target dataset since each input dataset has a different field name for 
# this info
fldMap = arcpy.FieldMap()
fldMap.addInputField("amherst","TOWNNAME")
fldMap.addInputField("hadley","NAME")
fldMap.addInputField("pelham","TOWN_NAME")
fldMap.addInputField("coldspring","TOWN")

# Set name of new output field "TOWNNAME"
townName = fldMap.outputField
townName.name, townName.aliasName, townName.type = "TOWNNAME", "TOWNNAME", "TEXT"
fldMap.outputField = townName

# Add output field to field mappings object
fieldMappings.addFieldMap(fldMap)

# Do the same for the POPULATION field
fldMap = arcpy.FieldMap()
fldMap.addInputField("amherst","POPULATION")
fldMap.addInputField("hadley","POP")
fldMap.addInputField("pelham","POP_2010")
fldMap.addInputField("coldspring","POP")

# Set name of new output field "POPULATION"
pop = fldMap.outputField
pop.name, pop.aliasName, pop.type = "POPULATION", "POPULATION", "LONG"
fldMap.outputField = pop

# Add output field to field mappings object
fieldMappings.addFieldMap(fldMap)

# Process: Append the feature classes to the target feature class
arcpy.management.Append(fcList, os.path.join(outLocation, "amherst"), schemaType, 
                        fieldMappings, subtype)

Environments

Special cases

Preserve Global IDs

For the Append tool, this environment only applies to enterprise geodatabase data and will only work on data that has a Global ID field with a unique index. If the Global ID field does not have a unique index, the tool may fail. To add a unique index to a Global ID field, you can use the Add Attribute Index tool.

Licensing information

  • Basic: Yes
  • Standard: Yes
  • Advanced: Yes

Related topics