日期:2014-05-16  浏览次数:20509 次

Oracle 11g 导入导出表方法汇总

啥也甭说,上方法:

导出:

 方一:1.先set oracle_sid.

            2.寻bin目录,我的是D:\>cd D:\app\Administrator\product\11.2.0\dbhome_1\BIN

            3.执行exp scott/root@jxgl21 file=D:\t.dmp tables=(S)//S为表名称

             或导出整个数据库exp scott/root@jxgl21 file=D:\t1.dmp full=yes

方二:利用PL/SQL Developer工具导出:菜单栏---->Tools---->Export Tables,再选择需要导出的表。

导入:执行 imp scott/root@jxgl21 file=d:\t.dmp  ignore=y