Is there a way to check for an empty file in JCL other than
using IEBCOMPR and the command PRINT COUNT(1)?

Answers were Sorted based on User's Feedback



Is there a way to check for an empty file in JCL other than using IEBCOMPR and the command PRINT C..

Answer / jayaprabhu

using the Uitility IEBPTPCH

If RC=04 no data ie the file is empty
rc=00 file is not empty

Is This Answer Correct ?    12 Yes 1 No

Is there a way to check for an empty file in JCL other than using IEBCOMPR and the command PRINT C..

Answer / arul anand.a

//STEP01 EXEC PGM=IDCAMS
//SYSUDUMP DD SYSOUT=*
//SYSOUT DD SYSOUT=*
//SYSPRINT DD SYSOUT=*
//INDD DD DSN=FILE1,
// DISP=SHR
//OUTDD DD DSN=FILE2,
// DISP=SHR,
REPRO INFILE(INDD) OUTFILE(OUTDD) COUNT(1)

THIS WILL GIVE RC = 04 IF THE INFILE IS EMPTY.
OTHERWISE IT WILL GIVE 0.

Is This Answer Correct ?    10 Yes 1 No

Is there a way to check for an empty file in JCL other than using IEBCOMPR and the command PRINT C..

Answer / saikat

By using a simple selcopy we can determine whether the file
is empty or not. IF file is empty then we can set the
return code of the step in the selcopy code.

Is This Answer Correct ?    2 Yes 0 No

Is there a way to check for an empty file in JCL other than using IEBCOMPR and the command PRINT C..

Answer / arun

Use the SORT utility with NULLOUT=RC04 OR RC16..If the file
is empty the step returns either 04 or 16 depending on what
you coded.

Is This Answer Correct ?    2 Yes 0 No

Is there a way to check for an empty file in JCL other than using IEBCOMPR and the command PRINT C..

Answer / nbohr02

By adding an ICETOOL (DFSORT) step you can force a return
code on empty with the COUNT (dd) EMPTY this will set RC to
12 so your Batch scheduler may not like it.

Is This Answer Correct ?    3 Yes 2 No

Is there a way to check for an empty file in JCL other than using IEBCOMPR and the command PRINT C..

Answer / mdv

Simple Sort job'll do.

Give PARM='nullout=rc4'

Is This Answer Correct ?    0 Yes 0 No

Is there a way to check for an empty file in JCL other than using IEBCOMPR and the command PRINT C..

Answer / d

October_tare.pre-ounced soft continúe dis the great

Is This Answer Correct ?    0 Yes 0 No

Is there a way to check for an empty file in JCL other than using IEBCOMPR and the command PRINT C..

Answer / nbohr02

You could write a REXX EXEC to read your required files then
have the exec sumbit the job to the internal reader with
either omitted steps or condition step coding. The IEBPTPCH
technique will work too.

Is This Answer Correct ?    0 Yes 3 No

Post New Answer

More JCL Interview Questions

which parameter is used to check the syntax of a jcl without executing it?

0 Answers   IBM,


What are the differences between JES2 & JES3 ?

4 Answers  


whats SOC7?

1 Answers   Patni,


What is the difference between a symbolic and an override in executing a PROC?

2 Answers  


what is the use of JCL?

0 Answers  






There are 2 steps in a JCL. If the first step abends due to system or user abend and the second step has COND specified as EVEN or ONLY, will this step still be executed inspite of the abend in the previous step?

2 Answers  


What is the use of ikjeft1b utility in jcl?

1 Answers  


What is jcl in mainframe, and how many types of jcl statements are there for a job?

0 Answers  


What is the difference between static call & Dynamic call ?

3 Answers  


whats the difference between empty and noempty of GDG?

4 Answers   Patni,


What is GDG?

1 Answers  


Suppose I have a program in cobol name ”careerride” and want to execute the program by jcl. Specify the process?

0 Answers  


Categories