Skip to:
This Problem still exists in oracle 11.2.0.2.
The reason ist, that oracle saves empty Strings as NULL so the NOT NULL constraint on the column PROPVALUE is violated.
It can be fixed with:
ALTER TABLE ofGroupProp MODIFY propValue VARCHAR2(4000) NULL;
This Problem still exists in oracle 11.2.0.2.
The reason ist, that oracle saves empty Strings as NULL so the NOT NULL constraint on the column PROPVALUE is violated.
It can be fixed with:
ALTER TABLE ofGroupProp MODIFY propValue VARCHAR2(4000) NULL;