linux下想导出表空间interlib 用户interlib 密码ketuinterlib下的
表名为holding的所有数据
plsql可以导出来不
求高手指点 我这样导不出来 求高手指点
[oracle@interlib1 ~]$ exp interlib/ketuinterlib full=y file = /home/oracle/20121107.dmp tables=holdingExport: Release 10.1.0.3.0 - Production on 星期三 11月 7 08:18:26 2012Copyright (c) 1982, 2004, Oracle.  All rights reserved.
Connected to: Oracle Database 10g Enterprise Edition Release 10.1.0.3.0 - Production
With the Partitioning, OLAP and Data Mining options
EXP-00026: conflicting modes specified
EXP-00000: Export terminated unsuccessfully

解决方案 »

  1.   

    去掉 full=y 加上 rows=y
    oracle@linux:~> exp scott/tiger file=./emp.dmp rows=y tables=empExport: Release 11.2.0.3.0 - Production on Wed Nov 7 09:53:48 2012Copyright (c) 1982, 2011, Oracle and/or its affiliates.  All rights reserved.
    Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    With the Partitioning, Oracle Label Security, OLAP, Data Mining,
    Oracle Database Vault and Real Application Testing option
    Export done in AL32UTF8 character set and AL16UTF16 NCHAR character setAbout to export specified tables via Conventional Path ...
    . . exporting table                            EMP         14 rows exported
    Export terminated successfully without warnings.
      

  2.   

    用plsql更简单了,用interlib 这个用户登录,然后tools菜单中,export tables 选项,选中要导出的表即可
      

  3.   

    我也想PLSQL出来 但是好像报错
    我把错误代码贴上来
    EXP-00056: 遇到 ORACLE 错误 6550
    ORA-06550: line 1, column 41:
    PLS-00302: component 'SET_NO_OUTLINES' must be declared
    ORA-06550: line 1, column 15:
    PL/SQL: Statement ignored
    EXP-00000: 导出终止失败
      

  4.   

    我也想PLSQL出来 但是好像报错
    我把错误代码贴上来
    EXP-00056: 遇到 ORACLE 错误 6550
    ORA-06550: line 1, column 41:
    PLS-00302: component 'SET_NO_OUTLINES' must be declared
    ORA-06550: line 1, column 15:
    PL/SQL: Statement ignored
    EXP-00000: 导出终止失败