导出:exp username/[email protected] file=路径 tables=(tb1) //tables=(tb1)可有可无,方便导出指定表
导入:imp username/[email protected] file=路径 tables=(tb1) full=y
在用plsql导出dmp的时候,没有数据的表显示没有导出成功
解决
1 查询一下当前用户下的所有空表
select table_name from user_tables where NUM_ROWS=0;
2 然后用以下SQL语句组装得到查询结果
select ‘alter table ‘||table_name||‘ allocate extent;‘ from user_tables where num_rows=0
3 把上一步得到的查询结果,一一执行
注意喔:一一执行
重新dmp命令就能成功导出空表了
原文地址:https://www.cnblogs.com/personsiglewine/p/11419955.html
时间: 2024-10-06 14:35:10