I added a new column in my table.
ALTER TABLE neue_buch modify preis not null;
and I have got this error:
Error starting at line 40 in command:
ALTER TABLE neue_buch
modify preis not null
Error report:
SQL Error: ORA-02296: cannot enable (S1885872.) - null values found
02296. 00000 - "cannot enable (%s.%s) - null values found"
*Cause: an alter table enable constraint failed because the table
contains values that do not satisfy the constraint.
*Action: Obvious
What wrong with my MODIFY STATEMENT.?
many thanks in advance,
magidu