0% found this document useful (0 votes)
55 views6 pages

Schedule Data Pump Export V5

1. Use the Data Pump Export Wizard in SQL Developer to schedule an export job that will export all tables and data from the schemas daily at 11 PM. 2. In the Job Schedule step, name the job, provide a description, and select the daily schedule at 11 PM to run the export job indefinitely. 3. Check the scheduled export job details using the dba_scheduler_jobs view, which shows when the job will run next and other execution details.

Uploaded by

vadi
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
55 views6 pages

Schedule Data Pump Export V5

1. Use the Data Pump Export Wizard in SQL Developer to schedule an export job that will export all tables and data from the schemas daily at 11 PM. 2. In the Job Schedule step, name the job, provide a description, and select the daily schedule at 11 PM to run the export job indefinitely. 3. Check the scheduled export job details using the dba_scheduler_jobs view, which shows when the job will run next and other execution details.

Uploaded by

vadi
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 6

How to schedule data pump export using SQL developer wizard

1. Select the Export Jobs menu item under Data Pump Menu as shown.
Use a connection which has appropriate privileges.

2. Right click on the Export Jobs menu item under Data Pump Menu as shown and left click on
“Data Pump Export Wizard…”.
3. You will now get the Data Pump export wizard window. Select the options as shown and click next.

4. In the next step select the schemas you want to export.


5. We want to export all the tables, so just click next in the next step.

6. We want to export all the data in all the tables, so just click next in the next step.
7. Select the log file directory and give a proper name for the log file. Check the “Delete Master table” check box.

8. Select the directory, file name and size for the dump file and select the “Append Timestamp to
Dump and log file names” as shown. The size specified must be larger than the expected dump file size.
9. In the “Job Schedule” step give the Job Name and Job Description. Also select the Job Schedule options as shown.
The Job schedule shown below will schedule an export daily at 11 PM. The job will run forever until dropped.

10. In the next window, click finish to schedule the export job.
11. Use the below query to check the job. The next_run_date will show when the job will run next.

SELECT owner, job_name, job_action, repeat_interval, enabled,


start_date, last_start_date, last_run_duration, next_run_date,
run_count, failure_count, comments
FROM dba_scheduler_jobs a
WHERE job_name like '%EXPORT_JOB_MPOWER%';

12. You can also check the job details as shown below. You can also drop and edit the job here as per your requirements.

You might also like