ArcGIS Desktop

  • ArcGIS Pro
  • ArcMap

  • My Profile
  • Help
  • Sign Out
ArcGIS Desktop

ArcGIS Online

The mapping platform for your organization

ArcGIS Desktop

A complete professional GIS

ArcGIS Enterprise

GIS in your enterprise

ArcGIS Developers

Tools to build location-aware apps

ArcGIS Solutions

Free template maps and apps for your industry

ArcGIS Marketplace

Get apps and data for your organization

  • Documentation
  • Support
Esri
  • Sign In
user
  • My Profile
  • Sign Out

ArcMap

  • Home
  • Get Started
  • Map
  • Analyze
  • Manage Data
  • Tools
  • Extensions

Disable Editor Tracking

  • Summary
  • Usage
  • Syntax
  • Code sample
  • Environments
  • Licensing information

Summary

Disables editor tracking on a feature class, table, mosaic dataset, or raster catalog.

Usage

  • If the input dataset is from an enterprise geodatabase, it must be from a database connection established as the data owner.

  • When editor tracking is disabled on a field, editor tracking information will no longer be recorded in these fields when edits are made. You can reenable editor tracking with the Enable Editor Tracking tool.

  • This tool operates on feature classes, tables, mosaic datasets, and raster catalogs in a 10.0 or later release geodatabase.

Syntax

arcpy.management.DisableEditorTracking(in_dataset, {creator}, {creation_date}, {last_editor}, {last_edit_date})
ParameterExplanationData Type
in_dataset

The feature class, table, mosaic dataset, or raster catalog in which editor tracking will be disabled.

Dataset
creator
(Optional)

Specifies whether editor tracking for the creator field will be disabled.

  • DISABLE_CREATOR —Editor tracking for the creator field will be disabled. This is the default.
  • NO_DISABLE_CREATOR —Editor tracking for the creator field will not be disabled.
Boolean
creation_date
(Optional)

Specifies whether editor tracking for the creation date field will be disabled.

  • DISABLE_CREATION_DATE —Editor tracking for the creation date field will be disabled. This is the default.
  • NO_DISABLE_CREATION_DATE —Editor tracking for the creation date field will not be disabled.
Boolean
last_editor
(Optional)

Specifies whether editor tracking for the last editor field will be disabled.

  • DISABLE_LAST_EDITOR —Editor tracking for the last editor field will be disabled. This is the default.
  • NO_DISABLE_LAST_EDITOR —Editor tracking for the last editor field will not be disabled.
Boolean
last_edit_date
(Optional)

Specifies whether editor tracking for the last edit date field will be disabled.

  • DISABLE_LAST_EDIT_DATE —Editor tracking for the last edit date field will be disabled. This is the default.
  • NO_DISABLE_LAST_EDIT_DATE —Editor tracking for the last edit date field will not be disabled.
Boolean

Derived Output

NameExplanationData Type
out_dataset

The updated input dataset.

Dataset

Code sample

DisableEditorTracking example (stand-alone script)

The following stand-alone script demonstrates how to disable editor tracking on a feature class.

# Name: DisableEditorTracking.py
# Description: Disables editor tracking on a feature class.

# Import arcpy module
import arcpy

# Local variables:
Buildings = "d:\\RC.gdb\\RC\\Buildings"

# Process: Disable Editor Tracking
arcpy.DisableEditorTracking_management(Buildings,
                                       "DISABLE_CREATOR",
                                       "DISABLE_CREATION_DATE",
                                       "DISABLE_LAST_EDITOR",
                                       "DISABLE_LAST_EDIT_DATE")

Environments

This tool does not use any geoprocessing environments.

Licensing information

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

Related topics

  • An overview of the Fields toolset

ArcGIS Desktop

  • Home
  • Documentation
  • Support

ArcGIS

  • ArcGIS Online
  • ArcGIS Desktop
  • ArcGIS Enterprise
  • ArcGIS
  • ArcGIS Developer
  • ArcGIS Solutions
  • ArcGIS Marketplace

About Esri

  • About Us
  • Careers
  • Esri Blog
  • User Conference
  • Developer Summit
Esri
Tell us what you think.
Copyright © 2021 Esri. | Privacy | Legal