what happens if we wont give timestamp in precompilation process ?

Answers were Sorted based on User's Feedback



what happens if we wont give timestamp in precompilation process ?..

Answer / suputhru

yes, nothing will happen.
Timestamp will automatically generted in precompilation time.

we don't give that.

Is This Answer Correct ?    6 Yes 0 No

what happens if we wont give timestamp in precompilation process ?..

Answer / vinodquestion

I think Timestamp is automatically generted in precompilation process.

If Timestamp mismatches 818 error will occur.

Is This Answer Correct ?    7 Yes 2 No

what happens if we wont give timestamp in precompilation process ?..

Answer / vinodquestion

Rajesh not 811 it is 818..

find ones...

Is This Answer Correct ?    5 Yes 0 No

what happens if we wont give timestamp in precompilation process ?..

Answer / rajesh

We dont need to give any timestamp during precompilation.

If the token error happens the bind will fail giving -811
SQLCODE

Is This Answer Correct ?    3 Yes 7 No

Post New Answer

More COBOL Interview Questions

Suppose a program has the following code. What will be the output? MAIN-PARA. DISPLAY 'MAIN-PARA' PERFORM SECTION-A. STOP RUN. SECTION-A. PARA-A1. DISPLAY 'SECTION A PARA A1'. PARA-A2. DISPLAY 'SECTION A PARA A2'.

4 Answers  


What is the difference between goback, stop run and exit program in cobol?

0 Answers  


can anybody post me about file-aid and changemen tools pls and give me reference if any mainframe guys are there

1 Answers  


How to solve SOC7. I have the cobol coded as below 01 A PIC 9(4). 01 AIN REDEFINES A. 05 AIN1 PIC S9(4) 01 B PIC 9(4)V99. 01 BIN REDEFINES B. 05 BIN1 PIC S9(4)V99. PROCEDURE DIVISION. START-PARA. INITIALIZE A AIN B BIN. ACCEPT A B. DISPLAY 'VALUE OF A=' A. DISPLAY 'VALUE OF B=' B. DISPLAY 'VALUE OF BIN1=' BIN1. DISPLAY 'VALUE OF AIN1=' AIN1. COMPUTE AIN1 = BIN1 - AIN1. DISPLAY 'VALUE OF AIN1=' AIN1. When i'm executing this code i'm getting SOC7 for A = 12 & B=34. Can someone explain SDSF OUTPUT DISPLAY TCOM058R JOB05458 DSID 102 LINE 0 COLUMNS 02- 81 COMMAND INPUT ===> SCROLL ===> CSR ********************************* TOP OF DATA ********************************** VALUE OF A=12 VALUE OF B=34 VALUE OF BIN1=34 VALUE OF AIN1=12 CEE3207S The system detected a data exception (System Completion Code=0C7). From compile unit PROG1 at entry point PROG1 at statement 29 at compile +000004CE at address 00007ECE. Please address how to solve this issue Thanks in advance.

1 Answers  


what is the use of comp2 ? where can we use it with example ?

3 Answers   Covansys,






) How do u handle errors in BMS macro?

0 Answers   IBM,


Is it possible that the redefines clause has different picture clauses compared to the one it redefined?

0 Answers  


Can anybody give me example of subscript and index

5 Answers  


How do you compile cobol program..?

1 Answers  


If we put three reads in COBOL in the same para one after the other, to read a PS file,will it read the same record thrice or it will read three records sequentially? For example : Input File 01 02 03 Para 900 Read infile Display Infile rec Read infile Display infile rec Read infile Display infile rec. What will be the output?

2 Answers  


How do you sort in a COBOL program? Give sort file definition, sort statement syntax and meaning.

7 Answers   CGI, TCS,


How to replace the GOTO statement in COBOL without changing the structure of program. e.g. consider following code... I.D. E.D. D.D. P.D. compute C = A + B. GOTO para 100-display. compute D = C - D. GOTO 200-display. some other logic...... ........ GOTO 300-para. ...... ...... GOTO 400-para. Now I want to replacce all GOTO statements without changing the structure and otput of program.

6 Answers   Accenture,


Categories