DB2 批量删除表

DB2不提供命令删除某个schema下的数据,但可以通过脚本来做。

db2 "select 'drop table ' || rtrim(tabschema) ||'.' ||tabname || ';' from syscat.tables where tabschema='testschema' " > droptable.ddl

db2 connect to
db2 -tvf droptable.ddl

当然也可以用图形化界面 db2cc选中删除。

来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/22418990/viewspace-720400/,如需转载,请注明出处,否则将追究法律责任。

转载于:http://blog.itpub.net/22418990/viewspace-720400/

你可能感兴趣的:(DB2 批量删除表)