
|
If you were logged in you would be able to see more operations.
|
|
|
| Planning Status: |
Unspecified
|
|
CREATE TABLE TEST (
A INTEGER
);
ALTER TABLE TEST ADD CHECK (A > 0);
ALTER TABLE TEST ALTER A SET DEFAULT '1000';
Error:
This operation is not defined for system tables.
unsuccessful metadata update.
Column A from table TEST is referenced in CHECK_798.
|
|
Description
|
CREATE TABLE TEST (
A INTEGER
);
ALTER TABLE TEST ADD CHECK (A > 0);
ALTER TABLE TEST ALTER A SET DEFAULT '1000';
Error:
This operation is not defined for system tables.
unsuccessful metadata update.
Column A from table TEST is referenced in CHECK_798. |
Show » |
|