导出数据库:
exp ois_eb/ois_eb@c1.njhuimu.com:1521/orcl file=E:ois_eb.dmp 需要全部信息的时候加上full=y 需要特定用户的时候加上owner=ois
会存在无法导出空表的情况,需要先对数据库空表进行处理
select 'alter table '||table_name||' allocate extent;' from user_tables where num_rows=0 or num_rows is null;
执行查出的结果
导入数据库:
imp sys/oracle@testxxxx as sysdba file=G:sx20190325.dmp full=y ignore=y ignore=y 代表着忽略错误继续运行