Author |
Message |
Topic: sign leading separate comparision |
Ganti
Replies: 6
Views: 4066
|
Forum: Application Programming Posted: Mon Nov 15, 2004 10:35 am Subject: sign leading separate comparision |
Try This:
01 WH-AMT PIC S9(09)v99 SIGN LEADING SEPARATE.
01 WH-AMT-ZERO PIC S(09)V99 SIGN LEADING SEPARATE.
...
MOVE 0 TO WH-AMT-ZERO.
DISPLAY 'THIS IS ZERO ' , WH-AMT-ZERO.
IF WH-AMT < WH ... |
Topic: Restarting a Particular job step |
Ganti
Replies: 5
Views: 3309
|
Forum: Job Control Language(JCL) Posted: Thu Aug 05, 2004 3:28 pm Subject: Restarting a Particular job step |
Is there any capability in JCL itself, to restart from the abending step, rather than they paging us ans we logon at mid nights...????
At the previous shop that I was working on, they could pa ... |
Topic: need a clarification |
Ganti
Replies: 1
Views: 1419
|
Forum: Database Posted: Wed Jul 07, 2004 10:41 am Subject: need a clarification |
Seems to me that this is from a program (Java/COBOL) and the & field will be in the previous logical statement, that has been captured from the front end (maybe a JSP/ASP).
Could you post the p ... |
Topic: UPDATE query |
Ganti
Replies: 4
Views: 3040
|
Forum: Database Posted: Mon Jun 14, 2004 1:25 pm Subject: UPDATE query |
Kathy,
There is a OCUNTRY, I am not sure if that is correct.
Also, I think your WHERE condition needs some parantheses.
Could you try this -
UPDATE ABCD.TABLE
SET NAME = 'KAT'
WHERE
(N ... |
Topic: Condtion Codes - Which Is Correct |
Ganti
Replies: 3
Views: 2993
|
Forum: Job Control Language(JCL) Posted: Mon Dec 22, 2003 2:57 pm Subject: Condtion Codes - Which Is Correct |
Kolusu,
The error I get is that STEP1.STEP2 is not found, when I do a JEM on the PROC alone. |
Topic: Condtion Codes - Which Is Correct |
Ganti
Replies: 3
Views: 2993
|
Forum: Job Control Language(JCL) Posted: Mon Dec 22, 2003 10:31 am Subject: Condtion Codes - Which Is Correct |
Hi,
There is a JCL with the following steps
.
.
//STEP1 EXEC PROC1
.
.
//STEP5 EXEC PGM=IEBGENER, COND=(4,LE,STEP1.STEP2)
.
.
The datacenter standard is to have a JCL execute only PRO ... |
Topic: ADRDSSU - Backup and Restore |
Ganti
Replies: 1
Views: 2282
|
Forum: Utilities Posted: Tue Sep 16, 2003 3:26 pm Subject: ADRDSSU - Backup and Restore |
Hi,
I was wondering if a RESTORE of a VSAM dataset, from a previous backup using ADRDSSU performs an implicit REORG by itself ( I mean whether the CI/CA splits get eliminated) |
Topic: Searching A PDS Using An Exclusion Criterion |
Ganti
Replies: 10
Views: 8638
|
Forum: TSO and ISPF Posted: Thu Jan 09, 2003 4:36 pm Subject: Searching A PDS Using An Exclusion Criterion |
Hi,
I am here with a situation to list out all the members in the COBOL source PDS that have a
"BLOCK CONTAINS <any value apart from 0> RECORDS".
The reason I will want to do that is to ... |
|