Search found 940 matches

by dbzTHEdinosauer
Tue Nov 07, 2006 6:32 pm
Forum: COBOL
Topic: File STatus 41
Replies: 4
Views: 13071

the same answer you received in the other forum where you posted this question (and did not answer or say thanks after a solution was provided): you only receive a file status 41 'WHEN YOUR PROGRAM ATTEMPTS TO OPEN A FILE WHICH IS ALREADY OPEN'. Your program, as suggested in the other forum, is some...
by dbzTHEdinosauer
Tue Nov 07, 2006 4:23 pm
Forum: COBOL
Topic: needful- redefines
Replies: 5
Views: 10439

2. you can't. the compiler will flag the redefine as an error.

suggest that you RTFM.
by dbzTHEdinosauer
Tue Nov 07, 2006 4:21 pm
Forum: CICS
Topic: Reg : MQ series
Replies: 2
Views: 5621

what makes you think there is no connection made in cics? because you can't find the module that makes the connection?
by dbzTHEdinosauer
Tue Oct 17, 2006 7:11 pm
Forum: JCL
Topic: diff bet jess2 n jes3
Replies: 1
Views: 6150

with a google search on "difference JES2 and JES3" I obtained the following links, which I read and determined that when you have also read them, you will have an answer to your question: http://publib.boulder.ibm.com/infocenter/zoslnctr/v1r7/index.jsp?topic=/com.ibm.zconcepts.doc/zconcepts_205.html...
by dbzTHEdinosauer
Tue Oct 17, 2006 6:41 pm
Forum: DB2 SQL - DB2 PROGRAMMING
Topic: Inserting NULL
Replies: 5
Views: 21644

Reddy, you are correct: it is the wording. NULL is not inserted; the NULL Indicator (an additional column added to the table when a data column has been declared as NULLABLE in the CREATE Table SQL) for a data column of the DB2 table is SET. When the NULL indicator for a column is SET to -1 (NULL) t...
by dbzTHEdinosauer
Tue Oct 17, 2006 5:24 pm
Forum: DB2 SQL - DB2 PROGRAMMING
Topic: DB2 Certification
Replies: 3
Views: 9487

by dbzTHEdinosauer
Mon Oct 16, 2006 8:09 pm
Forum: DB2 SQL - DB2 PROGRAMMING
Topic: Inserting NULL
Replies: 5
Views: 21644

careful, you speak of NULL as a value. It is not. Null is a state.
by dbzTHEdinosauer
Mon Oct 09, 2006 7:11 pm
Forum: COBOL
Topic: Comp, Comp3 etc
Replies: 2
Views: 7470

srinivas, Since all the COMP-x types are site dependent (COMP is a generic word, and though there are defaults, COMP can be defined for a site as pack-decimal, binary etc...) I prefer to use the words DISPLAY, PACKED-DECIMAL, BINARY, FLOATING-POINT (long and short). I have had little use for floatin...
by dbzTHEdinosauer
Sat Oct 07, 2006 2:44 am
Forum: JCL
Topic: Difference b/w restart and resubmit
Replies: 1
Views: 7477

abhicet, RESTART implies 'Starting of the JCL at a point other than the begining'. reSUBMIT means SUBMITing a job stream a second (or third ...) time, often a JOB is RESUBMITted when the JCL had an error and the job could not be run. STEPs of a JOB rely on preceding STEPs to complete, normal complet...
by dbzTHEdinosauer
Tue Oct 03, 2006 2:44 am
Forum: COBOL
Topic: cobol
Replies: 3
Views: 7526

1)what happen if we declare variables in linkage section & not using in the procedure division? 2)What happens if we pass values from mainprogram to subprogram but not declared in the linkage section in subpogram? Short answer: 1 If the subprogram compiles, nothing. 2. If the subprogram compiles, n...