Attributes are not visible in ArcCatalog, when an Oracle view (or a table) is registered using 'sdelayer -o register,' having data type of user-maintained OBJECT ID as 'NUMBER'.
Last Published: August 25, 2014ArcSDE/Enterprise Geodatabase
Bug ID Number
NIM069082
Submitted
June 8, 2011
Last Modified
April 2, 2025
Applies to
ArcSDE/Enterprise Geodatabase
Version found
10.0
Status
Non-Reproducible
This issue was not reproducible when tested by the development team. Issues may be given this status when they cannot be reproduced or are no longer relevant in a development version of the software, but a specific fix was not installed to address the issue. The issue's Additional Information section may contain further explanation.
Additional Information
No Public Explanation
Workaround
Create a view with CAST(id AS NUMBER(38)) and register it using sdelayer -o register. For example: CREATE VIEW line_vw AS SELECT CAST(id AS NUMBER(38)) AS id, name, shape FROM line;