⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 droptable.out

📁 derby database source code.good for you.
💻 OUT
字号:
ij> -- tests for drop table--autocommit off;ij> ---- test simple table - all should work--create table t1 ( a int);0 rows inserted/updated/deletedij> drop table t1;0 rows inserted/updated/deletedij> -- t1 shouldn't be foundselect * from t1;ERROR 42X05: Table 'T1' does not exist.ij> create table t1 (a int);0 rows inserted/updated/deletedij> drop table t1;0 rows inserted/updated/deletedij> -- t1 shouldn't be foundselect * from t1;ERROR 42X05: Table 'T1' does not exist.ij> create table t1 (a int);0 rows inserted/updated/deletedij> drop table t1;0 rows inserted/updated/deletedij> -- t1 shouldn't be foundselect * from t1;ERROR 42X05: Table 'T1' does not exist.ij> ---- test table with unique constraint - all should work--create table t1 (a int not null unique);0 rows inserted/updated/deletedij> drop table t1;0 rows inserted/updated/deletedij> -- t1 shouldn't be foundselect * from t1;ERROR 42X05: Table 'T1' does not exist.ij> create table t1 (a int not null unique);0 rows inserted/updated/deletedij> drop table t1;0 rows inserted/updated/deletedij> -- t1 shouldn't be foundselect * from t1;ERROR 42X05: Table 'T1' does not exist.ij> create table t1 (a int not null unique);0 rows inserted/updated/deletedij> drop table t1;0 rows inserted/updated/deletedij> -- t1 shouldn't be foundselect * from t1;ERROR 42X05: Table 'T1' does not exist.ij> ---- test table with primary constraint - all should work--create table t1 ( a int not null primary key);0 rows inserted/updated/deletedij> drop table t1;0 rows inserted/updated/deletedij> -- t1 shouldn't be foundselect * from t1;ERROR 42X05: Table 'T1' does not exist.ij> create table t1 ( a int not null primary key);0 rows inserted/updated/deletedij> drop table t1;0 rows inserted/updated/deletedij> -- t1 shouldn't be foundselect * from t1;ERROR 42X05: Table 'T1' does not exist.ij> create table t1 ( a int not null primary key);0 rows inserted/updated/deletedij> drop table t1;0 rows inserted/updated/deletedij> -- t1 shouldn't be foundselect * from t1;ERROR 42X05: Table 'T1' does not exist.ij> ---- test table with check constraint - all should work--create table t1 ( a int check(a > 0));0 rows inserted/updated/deletedij> drop table t1;0 rows inserted/updated/deletedij> -- t1 shouldn't be foundselect * from t1;ERROR 42X05: Table 'T1' does not exist.ij> create table t1 ( a int check(a > 0));0 rows inserted/updated/deletedij> drop table t1;0 rows inserted/updated/deletedij> -- t1 shouldn't be foundselect * from t1;ERROR 42X05: Table 'T1' does not exist.ij> create table t1 ( a int check(a > 0));0 rows inserted/updated/deletedij> drop table t1;0 rows inserted/updated/deletedij> -- t1 shouldn't be foundselect * from t1;ERROR 42X05: Table 'T1' does not exist.ij> ---- test table with index - all should work--create table t1 ( a int);0 rows inserted/updated/deletedij> create index t1index on t1(a);0 rows inserted/updated/deletedij> drop table t1;0 rows inserted/updated/deletedij> -- t1 shouldn't be foundselect * from t1;ERROR 42X05: Table 'T1' does not exist.ij> create table t1 (a int);0 rows inserted/updated/deletedij> create index t1index on t1(a);0 rows inserted/updated/deletedij> drop table t1;0 rows inserted/updated/deletedij> -- t1 shouldn't be foundselect * from t1;ERROR 42X05: Table 'T1' does not exist.ij> create table t1 (a int);0 rows inserted/updated/deletedij> create index t1index on t1(a);0 rows inserted/updated/deletedij> drop table t1;0 rows inserted/updated/deletedij> -- t1 shouldn't be foundselect * from t1;ERROR 42X05: Table 'T1' does not exist.ij> ---- test table with foreign key references;--create table t1(a int not null primary key);0 rows inserted/updated/deletedij> create table t2(a int constraint reft1a references t1(a));0 rows inserted/updated/deletedij> -- this should fail with a dependent constraint errordrop table t1;ERROR X0Y25: Operation 'DROP CONSTRAINT' cannot be performed on object 'xxxxGENERATED-IDxxxx' because CONSTRAINT 'REFT1A' is dependent on that object.ij> -- this should fail with a dependent constraint errordrop table t1;ERROR X0Y25: Operation 'DROP CONSTRAINT' cannot be performed on object 'xxxxGENERATED-IDxxxx' because CONSTRAINT 'REFT1A' is dependent on that object.ij> -- dropping dependent constraintalter table t2 drop constraint reft1a;0 rows inserted/updated/deletedij> -- this should work since dependent constraint was droppeddrop table t1;0 rows inserted/updated/deletedij> -- t1 shouldn't be foundselect * from t1;ERROR 42X05: Table 'T1' does not exist.ij> -- the following should work since no referential constraint is leftinsert into t2 values(1);1 row inserted/updated/deletedij> drop table t2;0 rows inserted/updated/deletedij> ---- test table with view--create table t1(a int, b int);0 rows inserted/updated/deletedij> create table t2(c int, d int);0 rows inserted/updated/deletedij> create view vt1a as select a from t1;0 rows inserted/updated/deletedij> create view vt1b as select b from t1;0 rows inserted/updated/deletedij> create view vt1t2 as select * from t1, t2;0 rows inserted/updated/deletedij> create view vvt1a as select * from vt1a;0 rows inserted/updated/deletedij> create view vvvt1a as select * from vvt1a;0 rows inserted/updated/deletedij> -- this should fail with view being a dependent objectdrop table t1;ERROR X0Y23: Operation 'DROP TABLE' cannot be performed on object 'T1' because VIEW 'VT1A' is dependent on that object.ERROR X0Y23: Operation 'DROP TABLE' cannot be performed on object 'T1' because VIEW 'VT1B' is dependent on that object.ERROR X0Y23: Operation 'DROP TABLE' cannot be performed on object 'T1' because VIEW 'VT1T2' is dependent on that object.ERROR X0Y23: Operation 'DROP TABLE' cannot be performed on object 'T1' because VIEW 'VVT1A' is dependent on that object.ERROR X0Y23: Operation 'DROP TABLE' cannot be performed on object 'T1' because VIEW 'VVVT1A' is dependent on that object.ij> -- this should fail with view being a dependent objectdrop table t1;ERROR X0Y23: Operation 'DROP TABLE' cannot be performed on object 'T1' because VIEW 'VT1A' is dependent on that object.ERROR X0Y23: Operation 'DROP TABLE' cannot be performed on object 'T1' because VIEW 'VT1B' is dependent on that object.ERROR X0Y23: Operation 'DROP TABLE' cannot be performed on object 'T1' because VIEW 'VT1T2' is dependent on that object.ERROR X0Y23: Operation 'DROP TABLE' cannot be performed on object 'T1' because VIEW 'VVT1A' is dependent on that object.ERROR X0Y23: Operation 'DROP TABLE' cannot be performed on object 'T1' because VIEW 'VVVT1A' is dependent on that object.ij> -- dropping dependent viewsdrop view vvvt1a;0 rows inserted/updated/deletedij> drop view vvt1a;0 rows inserted/updated/deletedij> drop view vt1t2;0 rows inserted/updated/deletedij> drop view vt1b;0 rows inserted/updated/deletedij> drop view vt1a;0 rows inserted/updated/deletedij> -- this should work after dependent views were droppeddrop table t1;0 rows inserted/updated/deletedij> -- this shouldn't find the viewselect * from vt1a;ERROR 42X05: Table 'VT1A' does not exist.ij> select * from vt1b;ERROR 42X05: Table 'VT1B' does not exist.ij> select * from vt1t2;ERROR 42X05: Table 'VT1T2' does not exist.ij> select * from vvt1a;ERROR 42X05: Table 'VVT1A' does not exist.ij> select * from vvvt1a;ERROR 42X05: Table 'VVVT1A' does not exist.ij> drop table t2;0 rows inserted/updated/deletedij> ---- test table with prepared statement--create table t1(a int);0 rows inserted/updated/deletedij> prepare t1stmt as 'select * from t1';ij> -- this should work, statement will be invalidated and will fail when recompileddrop table t1;0 rows inserted/updated/deletedij> execute t1stmt;ERROR 42X05: Table 'T1' does not exist.ij> remove t1stmt;ij> create table t1(a int);0 rows inserted/updated/deletedij> prepare t1stmt as 'select * from t1';ij> -- this should work, statement will be invalidated and will fail when recompileddrop table t1;0 rows inserted/updated/deletedij> execute t1stmt;ERROR 42X05: Table 'T1' does not exist.ij> remove t1stmt;ij> create table t1(a int);0 rows inserted/updated/deletedij> prepare t1stmt as 'select * from t1';ij> -- this should work, statement will be invalidated and will fail when recompileddrop table t1;0 rows inserted/updated/deletedij> execute t1stmt;ERROR 42X05: Table 'T1' does not exist.ij> remove t1stmt;ij> ---- test table with triggers--create table t1(a int);0 rows inserted/updated/deletedij> create table t2(a int);0 rows inserted/updated/deletedij> create trigger t1trig after insert on t1 for each row mode db2sql insert into t2 values(1);0 rows inserted/updated/deletedij> -- this should work - trigger should be deleteddrop table t1;0 rows inserted/updated/deletedij> -- t1 shouldn't be foundselect * from t1;ERROR 42X05: Table 'T1' does not exist.ij> create table t1(a int);0 rows inserted/updated/deletedij> create trigger t1trig after insert on t1 for each row mode db2sql insert into t2 values(1);0 rows inserted/updated/deletedij> -- this should work - trigger should be deleteddrop table t1;0 rows inserted/updated/deletedij> -- t1 shouldn't be foundselect * from t1;ERROR 42X05: Table 'T1' does not exist.ij> create table t1(a int);0 rows inserted/updated/deletedij> create trigger t1trig after insert on t1 for each row mode db2sql insert into t2 values(1);0 rows inserted/updated/deletedij> -- this should work - trigger should be deleteddrop table t1;0 rows inserted/updated/deletedij> -- t1 shouldn't be foundselect * from t1;ERROR 42X05: Table 'T1' does not exist.ij> drop table t2;0 rows inserted/updated/deletedij> ---- test table within the body of a trigger on another table--create table t1(a int);0 rows inserted/updated/deletedij> create table t2(a int);0 rows inserted/updated/deletedij> create trigger t2trig after insert on t2 for each row mode db2sql insert into t1 values(1);0 rows inserted/updated/deletedij> -- this should workdrop table t1;0 rows inserted/updated/deletedij> -- the following should get an error when trying to recompile the trigger actioninsert into t2 values(1);ERROR 42X05: Table 'T1' does not exist.ij> drop table t2;0 rows inserted/updated/deletedij> create table t1(a int);0 rows inserted/updated/deletedij> create table t2(a int);0 rows inserted/updated/deletedij> create trigger t2trig after insert on t2 for each row mode db2sql insert into t1 values(1);0 rows inserted/updated/deletedij> -- this should workdrop table t1;0 rows inserted/updated/deletedij> -- the following should get an error when trying to recompile the trigger actioninsert into t2 values(1);ERROR 42X05: Table 'T1' does not exist.ij> drop table t2;0 rows inserted/updated/deletedij> create table t1(a int);0 rows inserted/updated/deletedij> create table t2(a int);0 rows inserted/updated/deletedij> create trigger t2trig after insert on t2 for each row mode db2sql insert into t1 values(1);0 rows inserted/updated/deletedij> -- this should workdrop table t1;0 rows inserted/updated/deletedij> -- the following should get an error when trying to recompile the trigger actioninsert into t2 values(1);ERROR 42X05: Table 'T1' does not exist.ij> drop table t2;0 rows inserted/updated/deletedij> ---- test drop view--create table t1(a int);0 rows inserted/updated/deletedij> create view vt1 as select * from t1;0 rows inserted/updated/deletedij> create view vvt1 as select * from vt1;0 rows inserted/updated/deletedij> -- these should faildrop view vt1;ERROR X0Y23: Operation 'DROP VIEW' cannot be performed on object 'VT1' because VIEW 'VVT1' is dependent on that object.ij> drop view vt1 restrict;ERROR 42X01: Syntax error: Encountered "restrict" at line 1, column 15.ij> drop view vt1 cascade;ERROR 42X01: Syntax error: Encountered "cascade" at line 1, column 15.ij> -- -- make sure that indexes are dropped for drop table--create table t2(a int not null primary key);0 rows inserted/updated/deletedij> create table reft2(a int constraint ref1 references t2);0 rows inserted/updated/deletedij> -- count should be 2select count(*) from sys.sysconglomerates c, sys.systables twhere t.tableid = c.tableid andt.tablename = 'REFT2';1          -----------2          ij> -- drop dependent referential constraintalter table reft2 drop constraint ref1;0 rows inserted/updated/deletedij> -- should work since dependent constraint was previously droppeddrop table t2;0 rows inserted/updated/deletedij> -- count should be 1select count(*) from sys.sysconglomerates c, sys.systables twhere t.tableid = c.tableid andt.tablename = 'REFT2';1          -----------1          ij> -- unsuccessful drop table should not affect open cursor-- beetle 4393rollback;ij> create table T1 (i int, c varchar(255), d varchar(255));0 rows inserted/updated/deletedij> insert into T1(i) values(1);1 row inserted/updated/deletedij> insert into T1(i) values(2);1 row inserted/updated/deletedij> get cursor X1 as 'select i from t1 for update of c';ij> prepare U as 'update t1 set c = CHAR(i) where current of X1';ij> next X1;I          -----------1          ij> drop table T1;ERROR X0X95: Operation 'DROP TABLE' cannot be performed on object 'T1' because there is an open ResultSet dependent on that object.ij> execute U;1 row inserted/updated/deletedij> select * from T1;I          |C                                                                                                                               |D                                                                                                                               -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------1          |1                                                                                                                               |NULL                                                                                                                            2          |NULL                                                                                                                            |NULL                                                                                                                            ij> -- pretend all of the above didn't happenautocommit on;ij> 

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -