PL/SQL里-TOOLS-EXPORT TABLES就可以的,需要你选要导的表。

解决方案 »

  1.   

    exp USERNAME/PASSWORD@SERVERNAME file=OUTPUTFILENAME tables=TABLENAME
      

  2.   

    tables参数;
    exp user/pasword@dbserver tables=(table1,table2) file=c:\db.dmp;
      

  3.   

    如果数据库在本机
    exp user/password file=c:\filename.dmp tables=table_name;
    如果数据库不在本机
    exp user/password@servername file=c:\filename.dmp tables=table_name;