摘要:
六 自动段空间管理ASSM要求使用在线重定义方式迁移表优点:支持在线读/写,不影响大查询,对海量数据的表进行操作效率非常好,实质只更新数据字典,不移动数据缺点:在线重定义后表上的主键、索引不会同步过来,必须重建,只变换表名.在finish转换过程中原表是锁定状态官方文档: PL/SQL Packages and Types Reference -> 搜索在线重定义dbms_redefinition1.创建MSSM表空间conn jch8/jch8drop tablespace MSSM including contents and datafiles;create tablespace 阅读全文
摘要:
1.准备环境drop tablespace jch8 including contents and datafiles;--jch801代表第8课create tablespace jch8 datafile '/u01/app/oracle/oradata/JCH2/jch801.dbf' size 50M;drop user jch8 cascade;create user jch8 identified by jch8 default tablespace jch8;grant dba to jch8;conn jch8/jch8drop table employee p 阅读全文