I understand this is a cliche but while doing export dump in oracle, I am getting these errors.
I have pretty much followed almost all documentation online and did these following steps:
CREATE OR REPLACE DIRECTORY export_meta as '/C:/oracle/'; (where C/oracle is my local path)
GRANT READ,WRITE ON export_meta to HR
expdp username/password DIRECTORY=export_meta
dumpfile=hr.dmp
But getting these errors:
ORA-39002: invalid operation ORA-39070: Unable to open the log file. ORA-29283: invalid file operation ORA-06512: ad "SYS.UTIL_FILE"
Can someone please tell me if this directory needs to be created on local and any idea as to why I am getting this error?
/C:/oracle/
doesn't appear to be a valid path. The leading/
implies Unix but theC:
implies Windows. Unless you have a Unix box with some (odd) Windows naming conventions. Second, that path needs to point to a directory that already exists on the database server's file system and that the operating system user running Oracle has access to. When you say "my local path" that implies that the path is on the client machine not on the server. – Justin Cave