重整table 的步驟

博客介绍了查看tablespace中包含多少个table的方法,使用SQL语句“select table_name,tablespace_name from dba_tables where tablespace_name='USERS'”。还给出查看datafile信息及计算其使用空间的方法,可据此进行resize等操作。
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/

评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符  | 博主筛选后可见
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值