日期:2014-05-16 浏览次数:24528 次
$ sqlplus /nolog SQL*Plus: Release 10.2.0.1.0 - Production on Wed Apr 8 10:04:51 2009 Copyright (c) 1982, 2005, Oracle. All rights reserved. SQL> conn / as sysdba Connected. SQL> create directiory tmp as '/tmp/'; create directiory tmp as '/tmp/' * ERROR at line 1: ORA-00901: invalid CREATE command SQL> create directory tmp as '/tmp/'; Directory created. SQL> GRANT READ,WRITE ON DIRECTORY tmp to hnky; SQL> exit Disconnected from Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - 64bit Production With the Partitioning, Real Application Clusters, OLAP and Data Mining options $ expdp hnky/hnky dumpfile=exp_dir:tmp EXCLUDE=TABLE:"IN ('T1','T2')" Export: Release 10.2.0.1.0 - 64bit Production on Wednesday, 08 April, 2009 10:17:49 Copyright (c) 2003, 2005, Oracle. All rights reserved. Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - 64bit Production With the Partitioning, Real Application Clusters, OLAP and Data Mining options .....
------解决方案--------------------
建立一个参数文件mypar.par
directory=mydir
dumpfile=myfile.dmp
logfile=myfile.log
exclude=TABLE:"IN('TABLE1','TABLE2')"
然后导出
expdp user/passwd parfile=mypar.par
------解决方案--------------------