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 |
The following entries appear in the WORKING-STORAGE SECTION: 01 DATE-TODAY. 05 YY PIC XX VALUE "90". 05 MM PIC XX VALUE "12". 05 DD PIC XX VALUE :31". 01 DATE-EDIT PIC XX/XX/XX. MOVE DATE-TODAY TO DATE-EDIT. (a) 901231 (b) 90/12/31 (c) 31/12/90 (d) 311290
what is redefines? where it can be effectively use for the purpose of memory utilization? give an example?
What is a scope terminator give example?
What are the functions like c or c++ in cobol?
How to read records from flat file in reverse order through COBOL program?
14 Answers Accenture, Broadridge, IBM, MAT, Polaris, SPIC, Syntel, TCS, Wipro,
What are literals?
level number 77 is used to define a)group data b)elementary data c)redefine d)none
u have passed sme charecters thru parm parameter in jcl. how do u code in cobol to recieve the values u gave in parm ?
can we display comp-3 variables. if we want to display what we have to do . give me one example
What is the difference between a binary search and a sequential search?
Why did you choose to work with ibm mainframe cobol programming?
Can a REDEFINES clause be used along with an OCCURS clause? if yes, 01 WS-TABLE. 03 WS-TABLE-EL OCCURS 5 TIMES PIC X(1) VALUE 'A'. 03 WS-EX REDEFINES WS-TABLE-EL PIC X(5). What can you expect? if no,why?