分析 (Data Management)

许可等级:BasicStandardAdvanced

摘要

更新业务表、要素表和增量表的数据库统计数据,以及这些表的索引的统计数据。

用法

语法

Analyze_management (in_dataset, components)
参数说明数据类型
in_dataset

要分析的表或要素类。

Layer; Table View ; Dataset
components

要分析的组件类型。

  • BUSINESS更新业务规则统计数据。
  • FEATURE更新要素统计数据。
  • RASTER更新栅格表统计数据。
  • ADDS更新所添加数据集的统计数据。
  • DELETES更新所删除数据集的统计数据。
String

代码实例

以下独立 Python 脚本使用“分析”工具来收集输入数据集的业务表索引的统计数据。

# Name: Analyze_Example.py
# Description: Gathers statistics for the indexes on the buisness table of the input dataset
# Author: ESRI

# Import system modules
import arcpy

# Set local variables
inDataset = "Database Connections/ninefour@gdb.sde/GDB.ctgPrimaryFeature"

# Execute AlterVersion
arcpy.Analyze_management( inDataset,"BUSINESS")

环境

此工具不使用任何地理处理环境

相关主题

许可信息

ArcGIS for Desktop Basic:否
ArcGIS for Desktop Standard:是
ArcGIS for Desktop Advanced:是
9/15/2013