导入dbm文件
1. cmd打开命令行
imp username/password@orcl file=E:\xx full=y
导出dbm文件
11g以下的oracle版本
1.cmd
2.exp username/password@orcl file=E:\xx\xx.dmp log=XXX.log rows=y
oracle11g的新特性,数据条数是0时不分配segment,不能被导出
先查询一下哪些表是空的: select table_name from user_tables where NUM_ROWS=0; select 'alter table '||table_name||' allocate extent;' from user_tables where num_rows=0 之后再exp,就可以了 |