) How do you access the migrate the data from production
region to development region
Answer / guest
if a dataset is in migrate state , then just give as below
3.4 option
dataset name
enter
hrecall <dataset name>
| Is This Answer Correct ? | 1 Yes | 0 No |
Explain how will you differentiate between an internal and an external sort, the pros and cons, internal sort syntax etc
what is SYNCHRONIZATION?
How you can read the file from bottom?
Consider the below example call a-test1. -- -- -- a-test1. if a=b perform a-test through a-exit next sentence else if b=c perform c-test through c-exit. if a=d perform d-test through d-exit. a-test. -- -- a-exit. exit. can u tell me what will happen if a=b after looping into a-exit will the control go back to a- test1. will the condition a=d be checked???
01 A pic 9(100) find record length of it
How to remove the spaces at the end of each record in the output file of variable length, via cobol program?
I have files that contains both duplicates files(occur more than twice) and non-duplicate files.The file is already sorted by a key.I want to determine those records that are duplicate and will be move to a duplicate file and non- duplicate files to be move to a valid file.thank you.help please
How to find whether a Flat file is empty or not without Reading a file in COBOL Program. (not using JCL)
What is diff betn PS and ESDS file? What is the diffrent compiler options in cobol and there discription? What is retrive nth maximum salary from salary DB2 table. Can we redefine COM-3 variable with varchar variable?
Give some examples of command terminators?
In INITIALIZE what is Repalcing Word will do
consider the following FD FILE-1 01 REC-1 PIC X(80) ...... WORKING-STORAGE SECTION 01 W-REC PIC X(90) ........ PROCEDURE DIVISION FIRST-PARA ....... READ FILE-1 INTO W-REC AT END MOVE 1 TO EOF-FLAG which of the following is true with respect to the above? a.REC-1 will contain nothing and W-REC will contain the contains of the record read b.REC-1 and W-REC contain the same data c.syntex is invalid and error will occur d.REC-1 and W-REC must be of same size