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'.
最後に公開された状態: August 25, 2014ArcSDE/Enterprise Geodatabase
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;