suppose there is one PF having two members PF1 PF2.PF has
one unique key Emp ID.could you tell me uniqueness in PF
will be effective across members as well ? assume emp iD
3333 is in member PF1 would same Emp id be exist also in
member PF2 ?
Answers were Sorted based on User's Feedback
Answer / dkcdac_61
i can surely say uniqeness will be effective in the
boundary of member PF1 not in Member Pf2.so emp id 3333 can
also exist in member pf2.
| Is This Answer Correct ? | 10 Yes | 1 No |
How to read records in reverse order in flat file? I know we can do it by reading all records into an array.... Then read records in reverse order by using subscript or index but can any body give me the exact code.
can we declare occurs in 01 level?
Study the DATA DIVISION entries and the three PROCEDURE DIVISION entries given below: 01 END-OF-FILE-SWITCH PIC XXX. 88 NO-MORE-RECS VALUE "YES". 88 MORE-RECS VALUE "NO". (i) READ SAMPLE-FILE AT END MOVE "YES" TO NO-MORE-RECS. (ii) IF NO-MORE-RECS = "YES" GO TO LAST-PARA. (iii) IF NO-MORE-RECS GO TO LAST-PARA. Which are wrong? (a) (i) and (ii) (b) (ii) and (iii) (c) (i) and (iii) (d) all
How to print 10 to 1 if the input have only 10 digit number?
When the working storage variables get allocated? a.At Compile time b.At starting of the run time c.At end of the run time. d.None of these
In an array processing what is the thing that can be done by using subscripts but not by using index
how many bytes does s9(7)COMP-3 field occupies?
What are the two search techniques ?
can we display comp-3 variables. if we want to display what we have to do . give me one example
How do u sort the table for Search ALL? Is it only using ASCENDING KEY IS statement in occurs clause? If the data is input in non ascending order, will the ASC KEY IS automatically sort the data? or will it throw compile time error?
How do you submit JCL via a Cobol program?
should I use Go back in the main program ? Yes we can use Go back in main program as well.