laptop and a wrench

Bug

The arcpy.ListFeatureClasses and arcpy.da.Walk functions return non-registered spatial tables within a Relational Database Management System (RDBMS).

Zuletzt veröffentlicht: January 14, 2016 ArcSDE/Enterprise Geodatabase
Bug-ID-Nummer BUG-000093302
EingereichtJanuary 5, 2016
Zuletzt geändertJune 5, 2024
Gilt fürArcSDE/Enterprise Geodatabase
Gefunden in Version10.2.1
StatusWill Not Be Addressed

Zusätzliche Informationen

This is as designed. These functions will list objects that contain a spatial column, both registered and non-registered.

Workaround

Use the arcpy.Describe function to find the dataset ID (DSID). Registered objects will have a value greater than 0. gdb = r'Database Connections\Connection to sde.sde' arcpy.env.workspace = gdb for fc in arcpy.ListFeatureClasses(): desc = arcpy.Describe(fc) if desc.DSID > 0: print '{} is registered'.format(fc) if desc.DSID < 0: print '{} is not registered'.format(fc)

Schritte zur Reproduzierung

Bug-ID: BUG-000093302

Software:

  • ArcSDE/Enterprise Geodatabase

Benachrichtigung erhalten, wenn sich der Status eines Bugs ändert

Esri Support App herunterladen

Weitere Informationen zu diesem Thema erkunden

Unterstützung durch ArcGIS-Experten anfordern

An den technischen Support wenden

Esri Support App herunterladen

Zu Download-Optionen wechseln