What is NOTCAT 2
Answers were Sorted based on User's Feedback
Answer / guest
This is an MVS message indicating that a duplicate catalog
entry exists. E.g., if you already have a dataset with dsn =
'xxxx.yyyy' and u try to create one with disp new, catlg,
you would get this error. the program open and write would
go through and at the end of the step the system would try
to put it in the system catalog. at this point since an
entry already exists the catlg would fail and give this
message. you can fix the problem by deleting/uncataloging
the first data set and going to the volume where the new
dataset exists(this info is in the msglog of the job) and
cataloging it.
| Is This Answer Correct ? | 5 Yes | 1 No |
Answer / bala nallapaneni
Dataset already exists in the system catalog,and u
executed the job with out deleting the existing dataset it
will abend with NOTCAT2, before executing the job delete
the existing dataset and submit the job it will run
fine.
| Is This Answer Correct ? | 2 Yes | 2 No |
What parameter of the job statement is used to limit the cpu time consumed by the job?
how GDGs are concatinated?
in catalog procedure i have step1 dd dsn=filea dd dsn=fileb dd dsn=filec ur concatenaning all the files. but i need to override fileb with file 2 ? can anyone give the ans pls for ths
How to execute 2nd and 4th steps among 5 steps in jcl proc?
A STEP has more than 1 file as INPUT. And we have to put all these records int 1 output file. How to do ? //InputF DD DSN=ID.File1 DSN=ID.File2 DSN=ID.File3
What is the function of //cntl statement?
List the different components of jcl statement?
What do you understand by the term “keyword” with respect to jcl and what is the opposite of the term?
what is the difference between return code and maxcc?
Are all (i), (ii), (iii), (iv) of the below are VALID to reference a temporary dataset ? STEP2 DD1 DD DSN = &&TEMP STEP3 DD2 DD (i) DSN = TEMP (ii) DSN = *.TEMP (iii) DSN = *.STEP1.DD1 (iv) DSN = *.STEP1.DD1.ONE
There are two input sorting files and there is a need to create one sort out file which contains data of both input files. What is the sort card for this. Write a sample JCL for this using a control card?
what happens when COND is coded in JOB statement and when COND is coded inside EXEC statement?