What is NOTCAT 2

Answers were Sorted based on User's Feedback



What is NOTCAT 2..

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

What is NOTCAT 2..

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

Post New Answer

More JCL Interview Questions

When we give TYPERUN = SCAN , what are the syntax errors we get?

5 Answers   Kanbay,


What is the meaning of the EXEC statement keyword, COND? What is its syntax?

2 Answers  


My requirement is : How to populate a empty PS/flat file with ONLY spaces in the first line. You should not use any input dataset to do this. I'm not sure whether you may use any utility for this purpose?

2 Answers   HCL,


Say I have a file with 12 records. Each record has the name of the month. I have to append data in these 12 records into 1 record. How is it possible?

2 Answers   CTS,


JCL Example: // //RUNJCL JOB CLASS=5,MSGCLASS=6,NOTIFY=&SYSUID //STEP01 EXEC PGM=IEFBR14 // .. .. If this JCL will run or it'll throw the ERROR?

4 Answers   HCL,






What is a procedure?

1 Answers  


i have 6 steps in my jcl program after going to 5th step i want to execute 3rd step.....how can i do it....by using(RESTART) can i do it or not?

2 Answers   Wipro,


How does jcl specify the job to the operating system?

0 Answers  


//step#3 exec pgm = hkbc762 what is wrong with the syntax?

3 Answers  


consider the following progrm statements MOVE 0 TO SW.NO.OF.REC PERFORM PRI-OUT UNTIL SW=1 DISPALY NO.OF.REC STOP RUN PRE-OUT READ IN-FILE AT END MOVE 1 TO SW WRITE OUO-REC FROM IN-REC ADD 1 TO NO.OF REC if the IN-FILE contains 1000 records what value will be displayed after the PERFORM is over? assume that N0.OF.REC has PIC 9(4) a.1000 b.1001 c.1 d.none of the above

1 Answers  


A file has dta in S9(09) COMP format. How do I move the data into a character field X(10)?

2 Answers  


i want to avoid the positional parameter how to code it ?

3 Answers   TCS,


Categories