Types: EDITIONABLE and NONEDITIONABLE are removed when using View and or Edit

Roeland

Member³
When using Oracle 11.2 or later, types could be defined as Editionable or NonEditionable.

But when Viewing or Editing this types afterwards this setting is removed.

Create:

Code:
CREATE OR REPLACE NONEDITIONABLE TYPE TEST_TYPE as object
(nr1 number(1)
,nr2 number(2)
)

Result when Viewing/Editing:

Code:
CREATE OR REPLACE TYPE TEST_TYPE as object
(nr1 number(1)
,nr2 number(2)
)

Remark: When using the ->DBMS_Metadata->DDL feature, the source code is correctly displayed.

Could this be fixed Plz?

Version 10.0.5.1710
 
Back
Top