What is XDC ?
Answers were Sorted based on User's Feedback
Answer / g.naveen
XDC is the command used to store the SPOOL information in
Dataset.
| Is This Answer Correct ? | 28 Yes | 4 No |
Answer / kingmanish
XDC is the command used to store the spool information in a
dataset.
The Job details get deleted from the spool after soem time
but if we want to see the details after some time then it
is quiet useful.
especially in testing etc
| Is This Answer Correct ? | 11 Yes | 3 No |
Answer / vijay gund
XDC is used to copy spool data to dataset.....
| Is This Answer Correct ? | 6 Yes | 2 No |
2 input fles: 2 flat files, with different number of records. both are having unique key for each record and already sorted in ascending order . match these files using unique key and in output only matching key value has to be written. please procide cobol logic
How to read the last 100 records from a COBOL file. The file contains N number of records.
hi is there any means of deletin a record from a ps usin cobol not using jcl?eg if i am reading a record and if some condition is matched tat particular record must be deletd fom the ps
How to find out the closest prime number of an input number? I believe it has something to do with SEARCH and COBOL Linear Array.
consider the following two statements MOVE 10 TO N PERFORM PARA-X N TIMES STOP RUN PARA-X MOVE 5 TO N how many times PARA-X willbe exicuted? a.10 b.5 c.infinate d.execution error
How do get the result of your program directly on your pc?
What is link edit in cobol?
what is internal sort and external sort ? which is preferable ?
What is wrong with the following data declaration? 01 W-DATE PIC X(6). 05 DD PIC 99. 05 MM PIC 99. 05 YY PIC 99. (a) Nothing is wrong. (b) Under W-DATE all level 05 items are having a PIC 99 but level 01 has PIC X(6). (c) PIC can't be specified for a group item. (d) DD, MM, and YY are invalid datanames.
How to remove the spaces at end of each record in the output file Via COBOL program? note: The file has a VB length
Hai friends why we need to read a file before re-write a record?
suppose a cobol programme A calling programme B,C and D. If C undergoes some change what if A,B,C,D need to be recompiled or only C nee to be recompliled.