How does IDMS insure data integrity?
Answer / laser
IDMS uses record locks to prevent another run-unit from
updating the same record.
| Is This Answer Correct ? | 3 Yes | 0 No |
how the control comes back from subprogram to mainprogram
what is jcl approach for programming?
What is the significance of the PROGRAM-ID paragraph? If this name doesnt match with the name of the COBOL program, does it make a difference? Is the name specified in the PROGRAM-ID paragraph used as a name for the load module or any such thing?
Define in-line perform?
What are different data types in cobol?
What is different between variable length and fixed length?
How to code fscode 10 in cobol program? Where yoy code in your pgm?give ans for the question.
What is the purpose of Identification Division?
How include time & date in the report generation in cobol programing?
Why do we use COMP-3 variables for computation, when we know that they are non displayable fields and require additional MOVE to numeric field before we populate it in output Reports?
01 a pic s9(5) occupies how many bytes ?
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