摘要
禁用地理数据库要素类或表的附件。删除附件关系类和附件表。
用法
此工具会永久删除在地理数据库内部存储的、与“输入数据集”相关联的所有附件。如果在禁用后启用了附件,则不会显示以前与要素类或表相关联的任何附件。
如果地理数据库要素类或表未启用附件,则将发出警告消息,且不进行处理。
语法
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
# 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)