Remove Field Conflict Filter (Data Management)

License Level:BasicStandardAdvanced

Summary

Removes a field conflict filter for a given field in a geodatabase table or feature class.

Field conflict filters can be applied to versioned tables or feature classes to prevent conflicts from being identified when the same attribute is updated in the parent and child versions. Field conflict filters only apply for reconciles in which conflicts are defined by attribute.

Usage

Syntax

RemoveFieldConflictFilter_management (table, fields)
ParameterExplanationData Type
table

Table or feature class containing the field or fields to be removed as conflict filters.

Feature Layer; Table View
fields
[fields,...]

Field or list of fields to be removed as conflict filters.

Field

Code Sample

RemoveFieldConflictFilter example 1(Python window)

The following Python window script demonstrates how to use the RemoveFieldConflictFilter in immediate mode to remove a single conflict filter from the phase field.

import arcpy
from arcpy import env
env.workspace = "Database Connections/airport.sde"
arcpy.RemoveFieldConflictFilter_management("Primary_UG", "phase")
RemoveFieldConflictFilter example 2(Python window)

The following Python window script demonstrates how to use the RemoveFieldConflictFilter in immediate mode to remove conflict filters from multiple fields at once.

import arcpy
from arcpy import env
env.workspace = "Database Connections/airport.sde"
arcpy.RemoveFieldConflictFilter_management("Primary_UG", ["phase","material"])

Environments

Related Topics

Licensing Information

ArcGIS for Desktop Basic: No
ArcGIS for Desktop Standard: Yes
ArcGIS for Desktop Advanced: Yes
5/7/2015