using expdp backup database

Dolphin

When i backup oracle using this statement:

EXPDP userid=scott/tiger@orcl directory=DATA_PUMP_DIR dumpfile=%filename%.DMP

It has error:

Ora-39002:The operation is invalid
Ora-3970:can not open the log file
Ora-39087:directory name DATA_PUMP_DIR is invalid

When I run:

select * from dba_directories;

the DATA_PUMP_DIR is

D:\app\Administrator\admin\orcl\dpdump\

More inportantly, I created the directory by myself. It still gives the same error and I am very sure the directories exists.

Dba

You need to grant read and write permission on directory to user for taking backup.(Assuming that you have all the rights)

GRANT read, write ON DIRECTORY data_pump_dir TO scott;

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

database logical full backup export using expdp

From Dev

how much time does it take to backup 100gb database with RMAN and expdp?

From Dev

How to backup database using XMLRPC?

From Dev

Postgresql Database Backup Using Python

From Dev

Get the database backup using PHP

From Dev

Postgresql Database Backup Using Python

From Dev

How to backup database using XMLRPC?

From Dev

Get the database backup using PHP

From Dev

Backup SQLite database using SaveFileDialog?

From Dev

how to create backup of postgres database using java

From Dev

Backup SQL Server database using WITH FORMAT

From Dev

Using Google Drive to backup and restore SQLite Database

From Dev

How to backup a postgres database using java

From Dev

How to backup MySQL database using Query?

From Dev

Automated database backup using PHP event

From Dev

How to backup MySQL database using Query?

From Dev

How to take PostgreSQL database backup using Java

From Dev

Export sequence in Oracle using "expdp"

From Dev

Database backup

From Dev

Backup database(s) using query without using mysqldump

From Dev

Backup database(s) using query without using mysqldump

From Dev

how to kill/cancel a database backup operation using query in sqlserver 2005?

From Java

How to take MySQL database backup using MySQL Workbench?

From Dev

How to backup another database using codeigniter "dbutil" class?

From Dev

How to compress a Lotus notes (.nsf) database using java for weekly backup?

From Dev

How do I backup my mssql database using powershell

From Dev

Backup and restore of Azure sql database using c#

From Dev

Using Launchd to run MAMP database backup every 2 minutes

From Dev

How do I backup my mssql database using powershell

Related Related

HotTag

Archive