首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > 其他数据库 >

Oracle Tablespace其间数据迁移

2012-07-28 
Oracle Tablespace之间数据迁移分区表常用的数据字典分区表信息:dba_part_tables显示分区:dba_tab_partiti

Oracle Tablespace之间数据迁移
分区表常用的数据字典

分区表信息:  dba_part_tables 
显示分区:    dba_tab_partitions 
显示子分区:  dba_tab_subpartitions 
显示分区列:  dba_part_key_columns 
显示子分区列:dba_subpart_dey_columns 
显示分区索引:dba_part_indexes 
显示索引分区:dba_ind_partitions

 alter table KNOWLEDGEITEM move lob(KILOCALTEXT)  store as (tablespace  WZRQ);  alter table MAIL_JOB move lob(MAIL_CONTENT)  store as (tablespace  WZRQ);    alter table FAX_JOB move lob(FAX_CONTENT)  store as (tablespace  WZRQ);


参考资料
http://blog.sina.com.cn/s/blog_713bf4fe01011cyu.html
http://xsb.itpub.net/post/419/38506



热点排行