日期:2014-05-17  浏览次数:20786 次

linux下我想导出表空间下的某个用户下某个表数据
linux下想导出表空间interlib 用户interlib 密码ketuinterlib下的
表名为holding的所有数据
plsql可以导出来不
求高手指点 

我这样导不出来 求高手指点
[oracle@interlib1 ~]$ exp interlib/ketuinterlib full=y file = /home/oracle/20121107.dmp tables=holding

Export: Release 10.1.0.3.0 - Production on 星期三 11月 7 08:18:26 2012

Copyright (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


------最佳解决方案--------------------
去掉 full=y 加上 rows=y


oracle@linux:~> exp scott/tiger file=./emp.dmp rows=y tables=emp

Export: Release 11.2.0.3.0 - Production on Wed Nov 7 09:53:48 2012

Copyright (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 set

About to export specified tables via Conventional Path ...
. . exporting table                            EMP         14 rows exported
Export terminated successfully without warnings.


------其他解决方案--------------------
用plsql更简单了,用interlib 这个用户登录,然后tools菜单中,export tables 选项,选中要导出的表即可
------其他解决方案--------------------
引用:
去掉 full=y 加上 rows=y



SQL code



1234567891011121314151617

oracle@linux:~> exp scott/tiger file=./emp.dmp rows=y tables=emp   Export: Release 11.2.0.3.0 - Production on Wed Nov 7 09:53:48……

我也想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: 导出终止失败
------其他解决方案--------------------
引用:
用plsql更简单了,用interlib 这个用户登录,然后tools菜单中,export tables 选项,选中要导出的表即可

我也想PLSQL出来 但是好像报错
我把错误代码贴上来
EXP-00056: 遇到 ORACLE 错误 6