Disable Feature Binning (Data Management)

Summary

Disables database computed feature binning on a feature class.

Usage

  • Database computed feature binning must be enabled before you can disable it.

  • You must be connected as the data owner to run this tool.

Parameters

LabelExplanationData Type
Input Features

The feature class for which database computed feature binning will be disabled.

Feature Layer

Derived Output

LabelExplanationData Type
Updated Features

The input feature class with database computed feature binning disabled.

Feature Layer

arcpy.management.DisableFeatureBinning(in_features)
NameExplanationData Type
in_features

The feature class for which database computed feature binning will be disabled.

Feature Layer

Derived Output

NameExplanationData Type
out_features

The input feature class with database computed feature binning disabled.

Feature Layer

Code sample

DisableFeatureBinning example (Python window)

Disable database computed feature binning on a feature class.

import arcpy
arcpy.management.DisableFeatureBinning("C:\\MyProject\\sdeConnection.sde\\mygdb.user1.global_earthquakes")

Environments

Licensing information

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

Related topics