When doing export occur above error, let’s check directories:
SQL> select directory_name, directory_path from dba_directories
DIRECTORY_NAME DIRECTORY_PATH
——————————————————————————–
DUMP_DIR /u02/dump_dir
Two thing’s that hadn’t done is:
1) given correct permissions for that user to acccess the logical directory for export:
SQL> GRANT read, write on directory dump_dir TO username;
2) create the physical directory
[oracle@oel6]$ mkdir -p /u02/dump_dir
after that our export run successfully;
SQL> select directory_name, directory_path from dba_directories
DIRECTORY_NAME DIRECTORY_PATH
——————————————————————————–
DUMP_DIR /u02/dump_dir
Two thing’s that hadn’t done is:
1) given correct permissions for that user to acccess the logical directory for export:
SQL> GRANT read, write on directory dump_dir TO username;
2) create the physical directory
[oracle@oel6]$ mkdir -p /u02/dump_dir
after that our export run successfully;
No comments:
Post a Comment