You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Here is a script for making all necessary objects:
CREATE TABLE TEST ( ID INTEGER );
CREATE DOMAIN TEST_DOMAIN AS INTEGER CHECK (EXISTS(SELECT * FROM TEST WHERE ID=VALUE));
Now there are 3 problems:
1) Server didn't create any dependency
2) I can drop table TEST without any problems (think because of 1): DROP TABLE TEST;
3) After table was dropped i can make backup and restore without any problems. I think server should show some message at the end of beckup or restore log...
Submitted by: Alexander Tyutik (tut)
Is related to QA179
Here is a script for making all necessary objects:
CREATE TABLE TEST ( ID INTEGER );
CREATE DOMAIN TEST_DOMAIN AS INTEGER CHECK (EXISTS(SELECT * FROM TEST WHERE ID=VALUE));
Now there are 3 problems:
1) Server didn't create any dependency
2) I can drop table TEST without any problems (think because of 1): DROP TABLE TEST;
3) After table was dropped i can make backup and restore without any problems. I think server should show some message at the end of beckup or restore log...
Commits: a568843
The text was updated successfully, but these errors were encountered: