1. export 要重整的table 做為backup 2. 找到要重整的table 的script 3. rename 要重整的table alter table test rename to test_old 4. 修改2找到的table 的script 的相關參數後create table test. 5. insert 數據 insert into table test select * from test_old; or import username/password file=***** 6. 比對數據有無丟失 select count(*) from test and select count(*) from test_old; 7. 按照原來的建index ,constraint and pk 8. drop table test_old[@more@]
補充:查看tablespace裡面包括多少個table 用
select table_name,tablespace_name from dba_tables where tablespace_name='USERS';
OR
select file#,name from v$datafile
select max(block_id) from dba_extents where file_id=&file_id;
根據BLOCK_ID *8192可以算出來該datafile的使用空間情況
然後可以resize or ....
来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/202861/viewspace-785128/,如需转载,请注明出处,否则将追究法律责任。
转载于:http://blog.itpub.net/202861/viewspace-785128/
博客介绍了查看tablespace中包含多少个table的方法,使用SQL语句“select table_name,tablespace_name from dba_tables where tablespace_name='USERS'”。还给出查看datafile信息及计算其使用空间的方法,可据此进行resize等操作。
1150

被折叠的 条评论
为什么被折叠?



