码迷,mamicode.com
首页 > 数据库 > 详细

Linux oracle 导入导出单个表(没有外键约束的情况下)

时间:2016-06-19 10:09:20      阅读:272      评论:0      收藏:0      [点我收藏+]

标签:

expdp:

SQL> create directory dir_tables as ‘/home/oracle/tables‘;

SQL> grant read,write on directory dir_tables to 用户名;

expdp system/system密码@SID tables=用户名.表名 directory=dir_tables dumpfile=tables.dmp logfile=tables.log

 

impdp:

SQL> create directory dir_tables as ‘/home/oracle/imp_tables‘;

SQL> grant read,write on directory dir_tables to sys;

impdp system/system密码 directory=dir_tables dumpfile=tables.dmp logfile=tables.log

 

备注:涉及到级联则不可用,已有表要删除,drop table deepdata.risks

Linux oracle 导入导出单个表(没有外键约束的情况下)

标签:

原文地址:http://www.cnblogs.com/yezongyang/p/5597477.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!