) 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 |
how to pass 100 to s9(4) how r they inserted ?
What is the difference between Structured COBOL Programming and Object Oriented COBOL ?
have in 100 records in a file i want to move only matched records to one output_file1 and nonmathed records are moved to another output_file2 ... any one can provide logic code
how do u indetify files succesfully executed or not ?
What is the LINKAGE SECTION used in COBOL?
How to remove the spaces at end of each record in the output file Via COBOL program? note: The file has a VB length
can you declare redefine in level 01?
where will u code file status ?
Scenario: I have 3 Input Files.Read the first i/p file and depending on certain business logic, I want to read wither i/p file-2 or i/p file-3.Now, depending on certain business logic applied to the record read from either file-2 or file-3, I decide to write them to either output file-2 or output file-2. Question: How many job steps are necessary to implement a solution for the above.
how we sort two input files based on a common column and giving one o/p file please send me the coding logic?
Will the variable POS in the following code have a value of 2 or not? 01 POS PIC S9(4) COMP VALUE 2. 01 FIRST-NAME PIC X(10) VALUE 'ABC'. 01 LAST-NAME PIC X(10) VALUE 'XYZ'. 01 NAME PIC X(20) VALUE SPACES. STRING FIRST-NAME DELIMITED BY SPACES ' ' DELIMITED BY SIZE LAST-NAME DELIMITED BY SPACES INTO NAME WITH POINTER POS
What is Alternate Index ? How is it different from regular index ?