免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
123下一页
最近访问板块 发新帖
查看: 11826 | 回复: 21
打印 上一主题 下一主题

如何将表从一个表空间移动到另一个表空间? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2003-08-18 15:51 |只看该作者 |倒序浏览
我想将表users从system表空间移动到data表空间,不知道怎么处理,移动后,users表中的数据是否也一起移动?请指教。

论坛徽章:
0
2 [报告]
发表于 2003-08-18 16:13 |只看该作者

如何将表从一个表空间移动到另一个表空间?

alter table users move tablespace data

完成后需要重建索引。

论坛徽章:
0
3 [报告]
发表于 2003-08-18 16:31 |只看该作者

如何将表从一个表空间移动到另一个表空间?

alte index idx_name rebuild tablespace tablespace_name

论坛徽章:
0
4 [报告]
发表于 2003-08-18 17:02 |只看该作者

如何将表从一个表空间移动到另一个表空间?

josephxd的是什么意思?

论坛徽章:
0
5 [报告]
发表于 2003-08-18 17:12 |只看该作者

如何将表从一个表空间移动到另一个表空间?

you may use the script below to archive your goal



  1. rem -- this script can move all your table / index into a certain tablespace
  2. rem -- please login as the user you want to move
  3. rem -- script by Serol Luo
  4. rem -- rollingpig from chinaunix.net
  5. rem -- edit the script to fit your database
  6. spo move_table.sql
  7. select 'alter table '||table_name||' move tablespace TABLESPACE_YOU_WANT_YOUR_TALBE_MOVE_TO  ;' from user_tables;
  8. spo off
  9. spo rebuild_index.sql
  10. select 'alter index '||index_name||' rebuild tablespace TABLESPACE_YOU_WANT_YOUR_INDEX_MOVE_TO ;' from user_indexes;
  11. spo off
  12. @move_table.sql
  13. @rebuild_index.sql

  14. exit

复制代码

论坛徽章:
0
6 [报告]
发表于 2003-08-18 17:26 |只看该作者

如何将表从一个表空间移动到另一个表空间?

[quote]原帖由 "rollingpig"][/quote 发表:
     

好!

论坛徽章:
0
7 [报告]
发表于 2003-08-19 08:12 |只看该作者

如何将表从一个表空间移动到另一个表空间?

有例子就更好了。

论坛徽章:
0
8 [报告]
发表于 2003-08-19 08:51 |只看该作者

如何将表从一个表空间移动到另一个表空间?

剪切,复制   

论坛徽章:
0
9 [报告]
发表于 2003-08-19 09:09 |只看该作者

如何将表从一个表空间移动到另一个表空间?

alter table table_name move tablespace tablespace_name;
(更改或重建相关索引)
alter index index_name rebuild tablespace tablaspace_name  ;
(create or replace index_name.................................)

论坛徽章:
0
10 [报告]
发表于 2003-08-19 09:15 |只看该作者

如何将表从一个表空间移动到另一个表空间?

我执行后提示:ORA-14004: 缺少 PARTITION 关键字
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP