laptop and a wrench

Error

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

Última publicación: January 14, 2016 ArcSDE/Enterprise Geodatabase
Número de ID del error BUG-000093302
EnviadoJanuary 5, 2016
Última modificaciónApril 28, 2025
Relacionado conArcSDE/Enterprise Geodatabase
Versión encontrada10.2.1
EstadoWill Not Be Addressed

Información adicional

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

Solución alternativa

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)

Pasos para reproducir

ID del error: BUG-000093302

Software:

  • ArcSDE/Enterprise Geodatabase

Recibir notificaciones cuando cambie el estado de un error

Descargar la aplicación de soporte de Esri

Descubrir más sobre este tema

Obtener ayuda de expertos en ArcGIS

Contactar con el soporte técnico

Descargar la aplicación de soporte de Esri

Ir a opciones de descarga