EXPEXPDP导出和IMPIMPDP导入语句

Posted 既然选择了远方 便只顾风雨兼程

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了EXPEXPDP导出和IMPIMPDP导入语句相关的知识,希望对你有一定的参考价值。

当我们没有远程服务器系统操作权限,而只有远程数据库操作权限的时候,无法将DMP文件copy在服务器目录下,只能使用EXP和IMP操作。

EXP全库导出语句:

exp username/[email protected]:port/servername file="E:\dmppath.dmp" full=y ignore=y;

IMP全库导入语句:

imp username/[email protected]:port/servername file="E:\dmppath.dmp" full=y ignore=y;

IMP单表导入语句:

imp  username/[email protected]:port/servername file="E:\dmppath.dmp" tables=(emp) ignore=y;(如果是多张表可以用逗号隔开)

IMP只导入表结构(包含视图、函数,不含触发器和存储过程):

imp username/[email protected]:port/servername file="E:\dmppath.dmp" fromuser=from_username touser=to_username rows=n;

IMP只导入数据:

imp username/[email protected]:port/servername file="E:\dmppath.dmp" fromuser=c##from_username touser=to_username statistics=none  ignore=y;

IMPDP数据泵导入:

impdp tzxmspsx/[email protected]:1521/tzxmsppub  schemas=tzxmspsx directory=XSDDIR  dumpfile=E:\TZXMSPDF1129.dmp logfile=exp.log

IMPDP更改表空间和用户导入:

impdp  username/[email protected]:port/servername directory=DATA_DIR dumpfile=example.DMP REMAP_SCHEMA=olduser:newuser remap_tablespace=oldtablespace:newtablespace,EXAMPLE_TEMP:newtablespace_temp

 

以上是关于EXPEXPDP导出和IMPIMPDP导入语句的主要内容,如果未能解决你的问题,请参考以下文章

PostgreSQL数据导出导入问题,谢谢

实验十四:导出与导入

求postgreSQL 的数据库的表数据,导入导出的sql语句,谢谢!

sql语句的备份(导入导出)

oracle 数据库导入导出语句

postgreSQL数据库里导入导出的sql语句是啥?