You can read more the DBMS_JOB.SUBMIT procedure at Ask Tom:
http://asktom.oracle.com/p
GT
Main Topics
Browse All TopicsDECLARE
X NUMBER;
BEGIN
SYS.DBMS_JOB.SUBMIT
( job => X
,what => 'DATA_WAREFID.LOAD_NEOSCI_
,next_date => to_date('04/05/2005 06:00:00','dd/mm/yyyy hh24:mi:ss')
,interval => 'TRUNC(SYSDATE)+15/12'
,no_parse => TRUE
);
END;
/
CAN YOU TELL ME WHAT THIS MEANS..pretty much could you pls decode from Begin to END /..I am fairly new..I wrote this job with no understanding and it worked..thats scary...
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
You can read more the DBMS_JOB.SUBMIT procedure at Ask Tom:
http://asktom.oracle.com/p
GT
Hi,
By going thru your job procedure what i have understood is
You have a procedure called LOAD_NEOSCI_DSSMART in DATA_WAREFID schema, which you submits as a new job usiing dbms_job procedure...
the explanations of each parameter .......
JOB An output parameter, this is the identifier assigned to the job you created. You must use this job number whenever you want to alter or remove the job.
WHAT This is the PL/SQL code you want to have executed. The WHAT parameter must end with a semi-colon.
NEXT_DATE The next date when the job will be run. The default value is SYSDATE.
INTERVAL The date function that calculates the next time to execute the job. The default value is NULL. INTERVAL must evaluate to a future point in time or NULL. This parameter is a VARCHAR2 and must be enclosed in single quotes.
NO_PARSE This is a flag. If NO_PARSE is set to FALSE (the default), Oracle parses the procedure associated with the job. If NO_PARSE is set to TRUE, Oracle parses the procedure associated with the job the first time that the job is executed. If, for example, you want to submit a job before you have created the tables associated with the job, set NO_PARSE to TRUE.
Hope this will help you
Business Accounts
Answer for Membership
by: Bigfam5Posted on 2005-05-03 at 06:46:21ID: 13917754
You scheduled a job. SSMART along with a parameter of MAY 2005
The name of the job to execute (WHAT parameter) is DATA_WAREFID.LOAD_NEOSCI_D
it executes(NEXT_DATE parameter) the first time on 5 May 2005 at 6:00 am
executes (INTERVAL paramter) every 18 hours after that
and oracle parses the job (NO_PARSE parameter) the first time it is run