I have an Oracle9 PDM with check constraints on some attributes. In the generated DDL script, the check constraint is missing:
WSR_SYNC_STATUS Varchar2(20 ) NOT NULL
CONSTRAINT WSR_SYNC_STATUS_CHECK CHECK (AsText),
instead of
WSR_SYNC_STATUS Varchar2(20 ) NOT NULL
CONSTRAINT WSR_SYNC_STATUS_CHECK CHECK (WSR_SYNC_STATUS IN (‘insert’,‘update’,‘delete’)),
Is this a problem of the current Beta 3.5.2.10?
Regards
Andreas