禁用附件 (Data Management)

许可等级:BasicStandardAdvanced

摘要

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

用法

语法

DisableAttachments_management (in_dataset)
参数说明数据类型
in_dataset

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

Table View

代码实例

DisableAttachments 示例(Python 窗口)

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

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

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

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

# Import system modules
import arcpy, os, sys

# 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
try:
    arcpy.DisableAttachments_management(input)
except:
    print arcpy.GetMessages(2)

环境

相关主题

许可信息

ArcGIS for Desktop Basic: 否
ArcGIS for Desktop Standard: 是
ArcGIS for Desktop Advanced: 是
5/10/2014