标签:
Oracle 11g下使用分区自动扩展的功能,非常方便,不过同时也带来一个问题,就是导出、导入之后,建表语句改了,下面来做个实验:
SQL> select * from v$version;
BANNER
------------------------------------------------------------------------------
Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
PL/SQL Release 11.2.0.1.0 - Production
CORE 11.2.0.1.0 Production
TNS for Linux: Version 11.2.0.1.0 - Production
NLSRTL Version 11.2.0.1.0 - Production
1. 初始化数据
drop table CALL_LOG purge;
create table CALL_LOG2.导出、导入数据
不能用exp,因为这个是新特性,exp不支持
exp test/test@10.10.15.150 file=d:/CALL_LOG.dmp tables=SOA_CALL_LOG标签:
原文地址:http://blog.csdn.net/stevendbaguo/article/details/46520359