How to find whether a Flat file is empty or not without
Reading a file in COBOL Program. (not using JCL)
Answers were Sorted based on User's Feedback
Answer / abhijit saha
Without JCL & Cobol i have this Option.
Just Type 'I' in front of your Datset which gives you
Data Set Information
jst Check the Current Utilization part if it shows 0 it
menas file is empty..
| Is This Answer Correct ? | 10 Yes | 2 No |
Answer / sandy
Opening a file will give a file status code of '0' and
not '10'. Only when reading, file status will be '10'
| Is This Answer Correct ? | 11 Yes | 4 No |
Answer / renu
Open the file and check the file code. If it is '10', the file is empty. It is always better to check the file code after every open statement and handle the empty file condition.
| Is This Answer Correct ? | 10 Yes | 8 No |
Answer / sharmila_g
IEBPTPCH is used to check empty dataset.. if it returns 4 the dataset is empty or if it returns 0 it is not empty.
| Is This Answer Correct ? | 4 Yes | 2 No |
Answer / srini
You can do with IDCAMS. Use input as your file and output
is dummy file and have repro count(1) in sysin dd *, if the
file is empty, you will get condition code 4 otherwise you
will get cc '0'.
| Is This Answer Correct ? | 5 Yes | 5 No |
Answer / vinodh
Goto ISPF 3.4, give the dataset name hit enter.
Press F11 until you see '%used', if its zero then the file
is empty. This will be useful if you want to validate many
GDG's for emptiness.
| Is This Answer Correct ? | 3 Yes | 4 No |
Answer / amarnadh reddy
Hi,
Use 3.4 option,to see the flat file. After it display the
file is empty.
or
When the file reading, file status code is 23.
| Is This Answer Correct ? | 3 Yes | 5 No |
Answer / anusha
Hope the dataset browse option (ISPF option) will tell
you 'DATASET is EMPTY' if no records in the file.
| Is This Answer Correct ? | 3 Yes | 8 No |
Answer / sroul4
Just write COUNT in front of the data set it will show thw
record count in it. 0 in this case.
| Is This Answer Correct ? | 1 Yes | 10 No |
How do we get current date from system with century?
How will 128 be saved in s9 (3) comp-3 How will 12 be saved in s9 (2) comp
What are the rules of the move verb?
i have a variable block which is used in my cobol program as input file having records of 4080 after compilation while runing the program im getiing file attribut mismatch and it is saying tht the record length of the file is 4084 can any one knw the answer how to reslove it ?
is it possible to pass an SQL query inside a jcl which is inside a cobol program?
What is CALL statement in COBOL?
can we read records in a file from botom to top. if possible how can we read
what is index and how to use two tables using index?
In a COBOL program, 2 tables TABLE1 and TABLE2 are defined that are indexed by INDEX1 and INDEX2 respectively. Can we use INDEX1 with TABLE2 and INDEX2 with TABLE1?
How would the number +1234 be stored if a PIC clause of PICTUREs9(4) comp-3 were used?
What are literals?
I have program P1 which calls file F1 which has 100 records and following structure 001 .................. 002 .................. 003 .................. 098 .................... 099 ................... 100 .................... Now I want to read these files and write these records in file F2 in following manner. 001 ...... 051 ..... 002 ...... 052 ..... 003 ...... 053 ..... .......... ....... .......... ....... .......... ....... 048 ........ 098 ...... 049 .......... 099 ....... 050 .... 100 ......