Click here to Skip to main content
15,886,110 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,

i got one requirement like i have to schedule one procedure which is running in other than peak hours.

can any body help me how to automate the job in Oracle10g.
actually i studied about dbms_scheduler but it is not understood by me.

assume i have the table like

crate table t1(id number,name varchar2(10))

insert into t1 values(101,'testjob')

now give me one example like every day 12AM i have to run my insert script i.e how can i automate it.
Posted
Updated 11-Dec-12 19:05pm
v2

1 solution

You need to create a JOB, this will execute whatever you want.

here is a few links:
Docs Oracle (with example)[^]

Another step-by-step[^]

and the last, but better:
Creating Jobs in Oracle Enterprise Manager Grid Control 10g Release 2 (With Screens of EM.)
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900