I want to create a export table job, but I can't understand why its not working.
my table is Department
create table department (id number, name varchar2(200));
I want to export a csv file for per day at 9:00 pm. I need to create it.
I only know: 0. create a directory
- create a
PROCEDURE - create a
DBMS_SCHEDULER.CREATE_PROGRAM - create a
DBMS_SCHEDULER.CREATE_SCHEDULE - create a
DBMS_SCHEDULER.CREATE_JOB - excute the job
thanks
I followed the steps below and it was successful ...