http://community.csdn.net/Expert/TopicView.asp?id=3967035

解决方案 »

  1.   

    1.创建中间表
    2.9i exp有个query参数可以帮助,不过是表级别的
      

  2.   

    首先建立一个表:
    create table aaa as select * from bbb where conditi = '';
    然后导出 aaa表:
    exp user/pass tables=(aaa) file=c:\aaa.dmp
    然后导入就可以了。
      

  3.   

    exp user/pass files = c:\aaa.dmp tables = aaa query = """where ..."""
    或者使用参数文件,把你的参数条件写入参数文件,然后使用
    exp user/pass parfile = 你的参数文件名