Search found 143 matches

by arrbee
Tue Mar 28, 2006 4:32 pm
Forum: INTERVIEW QUESTIONS
Topic: Pre Compilation and Compilation
Replies: 1
Views: 4935

What the precompile does?

Please refer to http://www.db2mag.com/story/showArticle ... D=15300107

HTH.
by arrbee
Tue Mar 28, 2006 4:22 pm
Forum: FILE-AID
Topic: Search Batch file-aid help
Replies: 14
Views: 70897

Hello,

What is the LRECL of your file?

"APRIL 2006" got 10 characters.
"OCTOBER 2006" got 12 characters.

I believe only equal length characters can be replaced. Otherwise, you need to increase the length of the file before you change the content.

Opinions welcome.
by arrbee
Tue Mar 28, 2006 4:19 pm
Forum: IMS DB
Topic: IMS
Replies: 2
Views: 7966

What exactly is that you are looking for?
by arrbee
Tue Mar 28, 2006 4:17 pm
Forum: JCL
Topic: condition codes
Replies: 9
Views: 27062

1. if step1 abends step3 should not execute 2. if step1 executes properly and step2 abends then step3 should execute. 3. if step1 and step2 both executes properly then step3 should also execute. I think the 2nd and 3rd points are contradicting with each other. Because you are looking for success an...
by arrbee
Tue Mar 28, 2006 3:46 pm
Forum: COBOL
Topic: wat is EXHIBIT
Replies: 1
Views: 5763

EXHIBIT statement
OS/VS COBOL accepted the EXHIBIT statement; Enterprise COBOL does not.
With Enterprise COBOL, you can use DISPLAY statements to replace EXHIBIT statements. However, the DISPLAY statement does not perform all the functions of the EXHIBIT statement.
by arrbee
Tue Mar 28, 2006 3:02 pm
Forum: COBOL
Topic: Cobol
Replies: 3
Views: 10941

Static Call:

CALL 'PGRM1' USING VAR-1, VAR-2.

Dynamic Call:

CALL WS-PGRM1 USING VAR-1, VAR-2.

Code: Select all

The WS-PGRM1 should have been declared in working-storage with a PIC of X(08).
HTH.
by arrbee
Mon Mar 27, 2006 11:07 am
Forum: COBOL
Topic: Which Compiler to use
Replies: 3
Views: 7051

You can use MS-COBOL compiler.
by arrbee
Wed Mar 22, 2006 8:39 am
Forum: ENDEVOR, COOLGEN , PANVALET and CA-7
Topic: endever
Replies: 8
Views: 20962

it is empty.

Hello,

U wanted to ask something on these topics?

Come out with your doubts.
by arrbee
Sat Mar 18, 2006 11:39 am
Forum: Entertainment
Topic: Bug in the Bed !!
Replies: 1
Views: 4879

Bug in the Bed !!

Software Engineer's Wife: Darling........get up quickly........there is a bug in the bed you are sleeping in.... Software Engineer: What is the severity? Can you please log it in our Defect Tracking System? Also, would you please ask our offshore team to look into it? Software Engineer's Wife: !!??#...
by arrbee
Sat Mar 18, 2006 7:24 am
Forum: ENDEVOR, COOLGEN , PANVALET and CA-7
Topic: CA7 Training - CA-7 commands
Replies: 5
Views: 40433

Few Regular Commands.

Hi, Here are few CA-7 commands that one would use regularly... ABENDED JOBS: LREQ,ST=RSTR (TO DISPLAY JOBS WITH ABNORMAL STATUS) LIST,JOB=* (TO DISPLAY JOBS THAT HAVE NOT COMPLETED SUCCESSFULLY) ACTIVE JOBS: LACT LACT,ST=LATE (JOBS SHOWING UP LATE) CANCEL: CANCEL,JOB=NNNN,FORCE=YES,REASON=UP TO 40 C...
by arrbee
Fri Mar 17, 2006 11:59 am
Forum: COBOL
Topic: Cobol-VSAM question
Replies: 2
Views: 6636

This is the way.

Hi, If it is using a KSDS then the SELECT statement would look like as shown below: SELECT I-XXXXXXX ASSIGN TO XXXVSAM ORGANIZATION IS INDEXED ACCESS IS RANDOM RECORD KEY IS XXXXXX-KEY. HTH.
by arrbee
Fri Mar 17, 2006 10:28 am
Forum: ASSEMBLER
Topic: Assembler IBM 370
Replies: 1
Views: 6943

RMODE, AMODE

There are a number of modes, attributes, and properties which programs may possess which affect the way they are handled by program management and other areas of MVS. Each program has an addressing mode (AMODE) and residency mode (RMODE) associated with it at link-edit time. The AMODE can be 24, 31...
by arrbee
Fri Mar 17, 2006 10:14 am
Forum: JCL
Topic: executing java program thru JCL
Replies: 6
Views: 49042

help

The following link should be helpful to you......... :)

Invoke a JAVA program from JCL
by arrbee
Thu Mar 16, 2006 10:37 am
Forum: DB2 SQL - DB2 PROGRAMMING
Topic: How to know the Primary and Foriegn keys?
Replies: 5
Views: 21754

Thanks Kalicharan. Sadly, we don't have File-Aid for DB2. I will try the other method told by you.

Thanks a lot.