What is SQL Code -904 and -903 in DB2 And how to handle it?
Answer / ajay digule
Yes unsuccessful execution of a DB2 query due to an unavailable resource. The name, type of resource unavailable and the reason is also provided by DB2
| Is This Answer Correct ? | 0 Yes | 0 No |
COMPUTE X = A * B - C * D and COMPUTE X = (A * B) - (C * D) (a) Are not the same (b) Are same (c) Syntactically wrong (d) Will yield a run time error
I want to remove a duplicates form a given input field using cobol program. please Any one help me out to solve this ... Thanks in Advance.
can I copy book which contain db2 statment in procedure divion?
Can we use redefine clause in occurs clause?
A LESS 1200 IF B GREATER 25 MOVE 47 TOC ELSE MOVE 57 TO C IF A GREATER 249 MOVE 67 TO C ELSE NEXT SENTENCE ELSE IF B LESS 67 MOVE 27 TO C What will be the value of C, when A is 137 and b is 25
Hi................... I have records like this aaaa cccc bbbb And i want output like this bbbb cccc aaaa How can it possible ?. Note:Please make sure records are in unsorted order. somebody plzzz help me.
What is XDC ?
How to delete a front spaces in a data-name/variable in cobol Example:- 01 data-name-1 PIC x(20) value " cobol language". 01 data-name-2 PIC x(20). MOVE data-name-1 to data-name-2. would like the value of data-name-2 is "cobol language".
which generation language is cobol
What is the difference between CALL BY VALUE and CALL BY CONTENT?
In COBOL programming, what is PERFORM? What is VARYING?
01 var1 pic s9(9)v99. 01 var2 pic x(30). procedure division. move 12345.99 to var1. move12345.99 to var2. display var1. display var2. what is the output?