禁用附件 (数据管理)

摘要

禁用地理数据库要素类或表的附件。此工具用于删除附件关系类和附件表。

使用情况

  • 如果输入数据集来自企业级地理数据库,则其必须来自作为数据所有者建立的数据库连接。

  • 此工具会永久删除在地理数据库内部存储的、与输入数据集相关联的所有附件。如果在禁用后启用了附件,则不会显示以前与要素类或表相关联的任何附件。

  • 如果地理数据库要素类或表未启用附件,则将显示警告消息,且不进行处理。

参数

标注说明数据类型
输入数据集

将禁用附件的地理数据库表或要素类。输入的表或要素类必须处于 10 或更高版本的地理数据库中。

Table View

派生输出

标注说明数据类型
更新的输入数据集

已更新的输入数据集。

表视图

arcpy.management.DisableAttachments(in_dataset)
名称说明数据类型
in_dataset

将禁用附件的地理数据库表或要素类。输入的表或要素类必须处于 10 或更高版本的地理数据库中。

Table View

派生输出

名称说明数据类型
out_dataset

已更新的输入数据集。

表视图

代码示例

DisableAttachments 示例(Python 窗口)

以下代码片段说明了如何在 Python 窗口中使用 DisableAttachments 工具。

import arcpy
arcpy.DisableAttachments_management(r"C:\Data\City.gdb\Parcels")
DisableAttachments 示例(独立脚本)

以下脚本说明了如何在独立脚本中使用 DisableAttachments 工具。

# Name: DisableAttachments_Example.py
# Description: GDB Attachments are no longer required, so disable
#              attachments on the input dataset

# Import system modules
import arcpy

# Set the geoprocessing workspace to the feature dataset LandRecord
# in the geodatabase City.gdb
arcpy.env.workspace = r"C:\Data\City.gdb\LandRecord"

# Set local variables
input = "Parcels"

# Use DisableAttachments to delete all attachment files from the gdb
# and disable attachment handling
arcpy.DisableAttachments_management(input)

许可信息

  • Basic: 否
  • Standard: 是
  • Advanced: 是

相关主题