1.查找过几篇文档,但还是不是很清楚如何导出多个表
2.还需要与另外一张表关联查询
(在 /home/oracle 目录下新建一个 expdp.par 文件,文件内容如下:
directory=expdir
dumpfile=scott_part.dmp
logfile=part_scott.log
tables=tt(如何导出多个表)
query=tt:"where object_id<=20"(这边的where如何与其他表关联)
然后执行下述命令,导出tt表的部分数据
[oracle@VM-10 ~]$ expdp scott/tiger parfile=/home/oracle/expdp.par)
内容采用于:“ ITPUB博客 ” ,链接:http://blog.itpub.net/24862808/viewspace-774039/
可以先在数据库中建个关联查询的临时表,然后导出临时表
create table linshi as 关联查询的select语句;
导出只能选择导出完整数据库,按用户,或选择多个表导出。