Q.1 how to implement the commitment control.
2.how to control commitment control from external program.

Answers were Sorted based on User's Feedback



Q.1 how to implement the commitment control. 2.how to control commitment control from external prog..

Answer / manoj kumar

Above answer is correct but there is one step missing -
1. CRTJRNRCV
2. CRTJRN
3. STRJRN
4. STRCMTCTL (in CL program)
5. 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).
6.ENDCMTCTL

Cheers Again!!!

Is This Answer Correct ?    15 Yes 0 No

Q.1 how to implement the commitment control. 2.how to control commitment control from external prog..

Answer / amit

Above answers are correct but there are a couple of steps
missing -
1. CRTJRNRCV
2. CRTJRN
3. STRJRN
4. STRCMTCTL (in CL program)
5. 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). Cheers !

Is This Answer Correct ?    7 Yes 1 No

Q.1 how to implement the commitment control. 2.how to control commitment control from external prog..

Answer / janardhan

1. Create a Journal Receiver using command CRTJRNRCV to
attach to Journal.
2. Create a Journal using command CRTJRN
3. Start Journal using command STRJRN or STRJRNPF.
4. Use COMIT and ROLLBK opcode in RPG Program with any
inticator to On and OFF.

Is This Answer Correct ?    8 Yes 3 No

Q.1 how to implement the commitment control. 2.how to control commitment control from external prog..

Answer / sids

Above answer is correct but there is one step missing -
1. CRTJRNRCV
2. CRTJRN
3. STRJRN
4. STRCMTCTL (in CL program)
5. 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).
6.ENDCMTCTL

One more thing you if you guys using COBOL then u have to
define Commitment Control for the file in the environment
division in File Control.

Is This Answer Correct ?    4 Yes 0 No

Q.1 how to implement the commitment control. 2.how to control commitment control from external prog..

Answer / sreedhar

Hi Deepak,
Here second question is doubt.
Why do you want to control "commitment control" from external program.
What is the requirement?
As long as file is under "commitment control" you can commit or rollback those transaction any point of time. this may be inside the program or out side the program.

Is This Answer Correct ?    1 Yes 0 No

Q.1 how to implement the commitment control. 2.how to control commitment control from external prog..

Answer / syam

1. Create a Journal using command CRTJRN
2. Create a Journal Receiver using command CRTJRNRCV to
attach to Journal.
3. Start Journal using command STRJRN or STRJRNPF.
4. Use COMIT and ROLLBK opcode in RPG Program with any
inticator to On and OFF.

Is This Answer Correct ?    9 Yes 9 No

Q.1 how to implement the commitment control. 2.how to control commitment control from external prog..

Answer / 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

More DB400 Interview Questions

how to update physical files using normal logical file

4 Answers  


Last statement of any RPG pgm is LR?

5 Answers  


What is the purpose of the chain and setll and setgt?

0 Answers  


How can we handle errors in RPG?

4 Answers  


When we create a pf and did not fill up maint parameter, then by default which access path will the system take & why?

0 Answers  






Suppose I have a pf,it contains 5 members,how to access particular member data from logical file ?and what is the use of member in pf?

0 Answers  


what is multiple member pf

1 Answers   Active Brains,


1. How can I create a LF using crtlf command based on a particular member in a multimember PF? Where I have to specify the member name? 2. How to differentiate between the types of join from a Join logical file DDS. Is it possible to have different types of Join Logical files? 3.Any performance difference between Opnqrf and Embedded SQL? When I should prefer Opnqryf and when SQL? 4. I know access path is the path chosen by the program to retrieve data. It can be of keyed access path or arrival sequence. *IMMED- *IMMED description says access path is updated each time record is added or deleted from a member. - What is updating here? *REBLD - The access path is completely rebuilt each time a file member is opened. The access path is maintained until the member is closed, then the access path is deleted. - I am not able to understand this completely. Could anyone explain these more clearly? 5.What is the purpose of using activation group. I know it is a resource allocator, but other than this any other benefits of using an activation group?

2 Answers   IBM,


How can we know that a trigger has been added on a PF? and what is the purpose of adding a trigger?

3 Answers  


how can i know logical file belongs to which physical file without source?

3 Answers   Cap Gemini,


When u create a PF and did not fill up Maint parameter, then by default which access path will the system take & why

2 Answers   HCL,


how to know total no of records in pf with out using sql??????

3 Answers  


Categories