DB2 表无法访问 也无法删除

SQL1477N表无法访问:往往是因为中断操作,没有记录日志而造成的,可以先解锁,reorg table tableName;.不行的话,就解锁再drop,再重建.下面是解锁、drop和重建的语句:

list applications;

force applications all;

drop table tableName;

create table ...

猜你喜欢

转载自blog.csdn.net/u013013225/article/details/46989125