laptop and a wrench

不具合

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

最後に公開された状態: January 14, 2016 ArcSDE/Enterprise Geodatabase
不具合 ID 番号 BUG-000093302
送信されましたJanuary 5, 2016
最終更新日June 5, 2024
適用対象ArcSDE/Enterprise Geodatabase
見つかったバージョン10.2.1
ステータスWill Not Be Addressed

参考情報

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

対処法

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)

再現の手順

不具合 ID: BUG-000093302

ソフトウェア:

  • ArcSDE/Enterprise Geodatabase

バグのステータスが変更されたときに通知を受け取る

Esri Support アプリのダウンロード

このトピックについてさらに調べる

ArcGIS エキスパートのサポートを受ける

テクニカル サポートへのお問い合わせ

Esri Support アプリのダウンロード

ダウンロード オプションに移動