Can't import dump from mapped net drive using data pump

我只是一个虾纸丫 提交于 2020-01-07 03:52:07

问题


I'm trying to import few users from .dmp file from a net drive. Unofrtunately it seems that I lack some rights to do so since I get

ORA-39001: invalid argument value
ORA-39000: bad dump file specification
ORA-31640: unable to open dump file "\\net\drive\directory\placeholder\my_dump.dmp" for read
ORA-27041: unable to open file
OSD-04002: unable to open file
O/S-Error: (OS 5) Access is denied.

I'm not sure why, because I can both access that directory, and for example save a txt file there.

Directory is saved on database as '\net\drive\directory\placeholder'. Log file has other directory specified (not on net drive).

Is there any workaround to import this dump without actually moving it to local drive? Dump is really big, and I don't have space for it (not even close) and neither can I (probably) change my rights on this mapped drive.

Also I can't really make dump smaller.

On one site I've found this advice - " Remember, your OS user ID may not be the ID that is running a submitted RMAN job, in an operating system, UNIX, Linux or Windows." The solution was to "

In the ControlPanel services:  
Right click on service
Select ?properties?
Select ?logon?
Change the default user ID to an Oracle user with Windows administrator privileges"

But I'm not sure what changing this would actually do to server/database, and I'm working on client's server so I don't want to act rashly. I also don't want to reset database or server itself.

Any help with what should I do?


回答1:


The problem is that your Oracle instance is running under different user account which doesn't have an access to the network drive. Unless you don't want to run Oracle under different account, you can give the read access to the current Oracle's instance user account (usually LocalSystem for Windows platform) to your network share. Another option could be to import data from the source database via dblink (you won't need dump file in this case at all)



来源:https://stackoverflow.com/questions/34384553/cant-import-dump-from-mapped-net-drive-using-data-pump

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!