what is sysncpoint?
Answer / naidu sekhar yandrapu
The updates done by a task automatically committed at task termination .
Syncpoint is used to commit portion of work completed without terminating the task.
SYNTAX:
EXEC CICS SYNCPOINT
END-EXEC
During the program processing , if want to rollback the changes made by you ,then by you code SYNCPOINT WITH ROLLBACK
| Is This Answer Correct ? | 0 Yes | 0 No |
How do you compile cobol program..?
What is the difference between write & move in COBOL?
What is the difference between Call and a Link?
What is the significance of 'above the line' and 'below the line'?
Under which scenario you would go for a static call as opposed to dynamic call?
for an INITIALIZE and what keyword allows for an override of the default.
Program A (Normal COBBAT) calling a B Program (DB2COBOL, COBBATDB which is using a VSAM file. its a dynamic call. How we will handle VSAM file decleration in our from JCL from where we are running A PGM. And should we have PLAN for A pGM also. if possible can some one post a sample JCL. Thanks for help in advance.
Difference between ps, esds
s9(18) comp-3:: What is the size of memory it takes internally?
what are decleratives in cobol?
What are all the divisions of a COBOL program?
I have a files containing both duplicate and non-duplicate records.The file is already sorted by a key.I want to determine those records that are duplicate and records that are non-duplicate.If duplicate the record is move to a duplicate file and if non-duplicate that will be move to valid file.thank you