imp 用户名/密码@服务名 file=c:\1.dmp;exp 用户名/密码@服务名 file=c:\1.dmp;

解决方案 »

  1.   

    exp 
    imp
    你根据提示相应的填信息就可以了。
      

  2.   

    库的导入模式分为3种:全局、用户、表模式
    导入方法分2种:命令行导入和配置文件导入(parafile)
    操作:
    dos下运行:
    导出:exp userid=用户名/密码@服务名 file=test.dmp full=y
    倒入:imp userid=用户名/密码@服务名 file=test.dmp full=y
      

  3.   

    举例:)
    导出库:exp 用户名/密码@服务名  file=f:\xxx.dmp  full=y
    导出表:exp 用户名/密码@服务名  tables=(aa,bb,cc) file=f:\xxx.dmp 如果要导出某个用户下所有表那么不写tables,写owner=用户名
    还不明白就像楼上说的exp help=y导出库:imp 用户名/密码@服务名  file=f:\xxx.dmp  full=y
    导入表:imp 用户名/密码@服务名  tables=(aa,bb,cc) file=f:\xxx.dmp 
    如果导出的时候用的是用户再加上 touser=xxx fromuser=xxx