Search found 9 matches

by pkaushi
Fri Feb 24, 2006 4:15 pm
Forum: JCL
Topic: IEBGENER - Emptying dataset.
Replies: 5
Views: 21018

HI , I really dont know why is it not working as i tried the same code in my machine and it worked..... :-) //STEP01 EXEC PGM=IEBGENER //* //SYSOUT DD SYSOUT=* //SYSPRINT DD SYSOUT=* //* //SYSUT2 DD DSN=xxx.xxx.xx,DISP=SHR //SYSUT1 DD DUMMY //* //SYSIN DD DUMMY Try submitting the jcl again. It shoul...
by pkaushi
Fri Feb 24, 2006 2:40 pm
Forum: DB2 SQL - DB2 PROGRAMMING
Topic: How to know the Primary and Foriegn keys?
Replies: 5
Views: 21562

Hi, Theres a way to know the referential integrity constarints specified for the tables created by DBA's using the DB2Administration tool. Just type DB2A in teh command line and go browse the table. Give ddl against the table and it will list down teh sql query for the same. There you can find it o...
by pkaushi
Fri Feb 17, 2006 2:29 pm
Forum: DB2 SQL - DB2 PROGRAMMING
Topic: db2 703 application developmetn certification
Replies: 1
Views: 9534

db2 703 application developmetn certification

Hi,

PLease let me know the url where I can take sample tests for db2 703 exam.
by pkaushi
Fri Feb 17, 2006 2:20 pm
Forum: COBOL
Topic: COMP-3 TO ALPHANUMERIC MOVE
Replies: 11
Views: 51293

Hi Jaydeeppal, You cannot move a COMP-3 variable to alphanumeric directly. It will not give a SOC7 error but will you give you a return code 12 stating that comp-3 and alphanumeric variables did not follow the move compatibility rule. The solution 01 A1 PIC S9(4) COMP-3 VALUE 1234. 01 A1-NUM PIC S9(...
by pkaushi
Fri Feb 10, 2006 3:16 pm
Forum: COBOL
Topic: Biggest of N numbers
Replies: 2
Views: 7931

Biggest of N numbers

Hi ,

PLease tell me the logic to find teh biggest of n numbers without using any functions.
by pkaushi
Wed Feb 08, 2006 10:53 am
Forum: COBOL
Topic: difference between COMP and COMP-3
Replies: 4
Views: 23966

difference between COMP and COMP-3

Hi,

I would like to know the situation of when do we use a COMP and when COMP3. I know that COMP stores binary data and COMP-3 packed decimal. But what actually are the scenarios where we uese the two??
by pkaushi
Tue Feb 07, 2006 10:59 am
Forum: JCL
Topic: Control flow from one STEP to another
Replies: 9
Views: 54303

thanks prasad its working :D
by pkaushi
Tue Feb 07, 2006 9:51 am
Forum: JCL
Topic: Control flow from one STEP to another
Replies: 9
Views: 54303

Control flow from one STEP to another

Hi, I have a query... Think of a cobol program which generates output file say file A. Now the jcl has two steps say STEP1 and STEP2. STEP1 executes the COBOL program. Now whenever the program Writes some records into fileA only then step2 should execute and if nothing is written to the output file ...
by pkaushi
Mon Feb 06, 2006 1:48 pm
Forum: DFSORT , ICETOOL & Utilities
Topic: SORT JCL to Split data using OUTFIL
Replies: 5
Views: 39681

SORT JCL to Split data using OUTFIL

Hi,

I want to split a file contaning 700 records into 3 files where 1st file has 200, 2nd has 200 and 3rd has 300. I triedusing the SPLIT function in SYNCSORT but then the records where getting splitted evenly but not yb the record count as such.

Kindly help me out with this.