码迷,mamicode.com
首页 > 其他好文 > 详细

EXPDP 时ORA-27054 问题处置

时间:2016-12-03 02:36:08      阅读:108      评论:0      收藏:0      [点我收藏+]

标签:expdp 时ora-27054 问题

现象:

[oracle@oracle1 ~]$ expdp xian/xian schemas=xian directory=dumpdir dumpfile=xian.dmp LOGFILE=xian.log


Export: Release 10.2.0.5.0 - 64bit Production on Friday, 02 December, 2016 20:19:48


Copyright (c) 2003, 2007, Oracle.  All rights reserved.


Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.5.0 - 64bit Production

With the Partitioning, Real Application Clusters, OLAP, Data Mining

and Real Application Testing options

ORA-39001: invalid argument value

ORA-39000: bad dump file specification

ORA-31641: unable to create dump file "/backup/xian.dmp"

ORA-27054: NFS file system where the file is created or resides is not mounted with correct options

Additional information: 3

Additional information: 18


原因:

文件夹MOUNT NFS时未加相关参数

需要追加参数:rw,bg,hard,nointr,rsize=32768,wsize=32768,tcp,vers=3,timeo=600,actimeo=0


解决:改成如下

 mount -t nfs -o rw,bg,hard,nointr,rsize=32768,wsize=32768,tcp,vers=3,timeo=600,actimeo=0 10.71.13.109:/oracle/backup/ /backup


本文出自 “麦地坞” 博客,请务必保留此出处http://yunlongzheng.blog.51cto.com/788996/1878995

EXPDP 时ORA-27054 问题处置

标签:expdp 时ora-27054 问题

原文地址:http://yunlongzheng.blog.51cto.com/788996/1878995

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!