Q.1 how to implement the commitment control.
2.how to control commitment control from external program.
Answer Posted / binesh madhuripu
1. CRTJRNRCV
2. CRTJRN
3. STRJRN
4. STRCMTCTL
5. In Environment Division, declare file in
FILE-CONTROL then, mention Commitment Control
in I-O CONTROL.
Eg.
ENVIRONMENT DIVISION.
INPUT-OUTPUT SECTION.
FILE-CONTROL.
SELECT UPDATE-FILE ASSIGN TO DATABASE-PFILE1
ORGANIZATION IS INDEXED
ACCESS MODE IS DYNAMIC
RECORD KEY IS REC-KEY
FILE STATUS IS FILE-STATUS.
I-O-CONTROL.
COMMITMENT CONTROL FOR UPDATE-FILE.
6. Declare file with keyword COMMIT and in program use
Commit and Rollback based on processing logic
(i.e. after successful execution use Commit and when
invoked exception handling then use rollback).
7. ENDCMTCTL
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
How to retrieve a physical file after deleting that?
Suppose I have a pf, it contains 5 members, how to access particular member data from logical file? What is the use of member in pf?
What is the batch job?
Last statement of any rpg program is lr?
How many maximum record format a logical file have?
How to find the list of source physical files in a library?
What is the difference between access path and open data path?
What is the purpose of the chain and setll and setgt?
What is open data path?
There is one string as A B C and wanted to display string as Shri A Shri B Shri C, how we can do this in sql? If we have around 100 values in string like this, each value should be displayed with initials as Shri.
How to know the particular record in pf with out reading?
How to read a pf in reverse(from last record to first) using cl?
How to update physical file using logical file with example?
How to index LF by relative record no (RRN)
In a CL Program after executing a SQL SP how to receive a Output value from the SP. Just to make it clear I am sending 2 input and 1 output parameter to the SQL Stored Procedure. Now while receiving it output parm it is failing.