您的位置:首页 > 其它

磁盘检测命令CHKDSK的运用

2009-12-07 10:39 281 查看
引自:http://www.51testing.com/html/63/312663-857476.html

解决方法: 

 

1、先查询一下当前用户下的所有空表 

 

select table_name from user_tables where NUM_ROWS=0;

 

 

2、用以下这句查找空表 

 

select 'alter table '||table_name||' allocate extent;' from user_tables where num_rows=0 ;

 

 

3、把查询结果导出,执行导出的语句 alter table AQ$_AQ$_MEM_MC_H allocate extent;

 

alter table AQ$_AQ$_MEM_MC_G allocate extent;
alter table AQ$_AQ$_MEM_MC_I allocate extent;
alter table AQ$_AQ_PROP_TABLE_T allocate extent;

 
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: