Search found 109 matches

by Veera
Fri Mar 06, 2009 2:48 am
Forum: EASYTRIEVE
Topic: Data formating in Easytrieve
Replies: 2
Views: 9913

There are few questions I want to ask you before I provider any solution. But I will try to give some pointers by using which you might achieve want you want to. It is just Input-File OCCURS 2000 times VARIABLE-NAME PIC(X) 2007,ABINGDON EXTRA ,,,,Compass,,,,,,,,,,,,,,,,,,,,,,,,,,,,2005/34, 2008,ABIN...
by Veera
Fri Mar 06, 2009 2:25 am
Forum: ENDEVOR, COOLGEN , PANVALET and CA-7
Topic: Endevor
Replies: 3
Views: 19144

Shiva, I am not quite sure what you are looking for when you said explain with Some examples. I would try to explain in generic terms hope this helps. Endevor is a version control tool; conceptually it?s just like any other version control tool Say Changeman, CVS (NON-MAINFRAME). Why do we use/need ...
by Veera
Wed Dec 10, 2008 10:01 am
Forum: Admin Announcements
Topic: New Moderator - Anuj D.
Replies: 2
Views: 8903

Congrats Anuj, Welcome aboard. Hoping to see valuable contributions from your end in near future.

Thanks,
Veera.
by Veera
Wed Dec 10, 2008 9:56 am
Forum: Admin Announcements
Topic: STAR MEMBER AWARD - SEPTEMBER 2008
Replies: 9
Views: 20089

Thanks Krishna, I received the gift card. Sorry for the delay in acknowledgement.

Thanks,
Veera.
by Veera
Mon Nov 17, 2008 8:10 am
Forum: DFSORT , ICETOOL & Utilities
Topic: File Split using DFSORT
Replies: 8
Views: 17056

Thanks a lot Frank, you are genius. Theoretically it sounds simple, copy N/2 into first file and rest into second file. Building N was the crust and the tough part of the request. You always make it look so simple. It took a while and some paper work for me to understand it. Thanks a ton. Thanks, Ve...
by Veera
Sun Nov 16, 2008 8:31 am
Forum: DFSORT , ICETOOL & Utilities
Topic: File Split using DFSORT
Replies: 8
Views: 17056

Do you just want the first n/2 records in output file1 and the second n/2 records in output file2? yes. Is there anything in the header and trailer records that identify them (e.g. '0' in position 1 for header record and '9' in position 1 for trailer record). If so, what identfies them. 00 -> In Hea...
by Veera
Sat Nov 15, 2008 9:08 am
Forum: DFSORT , ICETOOL & Utilities
Topic: File Split using DFSORT
Replies: 8
Views: 17056

File Split using DFSORT

Input File -> RECFM=FB,LRECL=6 Output Files also should be of Same RECFM,Same LRECL. INPUT FILE SAMPLE DATA HEADER 111111 333333 222222 444444 ...... ...... -> Like this there are N no of records. where N = even number TRALER I need to split the above input file into 2 O/P files using DFSORT.Both th...
by Veera
Sat Nov 15, 2008 4:19 am
Forum: FILE-AID
Topic: NOT Condition.
Replies: 7
Views: 17684

Arrbee instead of COPY go with DROP

Code: Select all


//SYSIN    DD  *           
$$DD01 DROP IF=(01,0,C'FILEAID')
/*                         

Thanks,
Veera.
by Veera
Sat Nov 15, 2008 3:20 am
Forum: DFSORT , ICETOOL & Utilities
Topic: Split Files with Headers and Trailers using DFSORT
Replies: 3
Views: 11417

Ok Sorry for the confusion Frank. Firstly, I was trying to answer the question which sowjanya has asked in JCL forum. Second: The question I wanted to ask you is how to code a generic utility which will split the files into exactly 2(half) files. Both the files also should have the header and traile...
by Veera
Fri Nov 14, 2008 11:18 pm
Forum: JCL
Topic: how to split files which has header and trailor
Replies: 10
Views: 21513

Sowjanya, I have posted a sample code for splitting the files using DFSORT in DFSORT , ICETOOL & Utilities forum. If you can use DFSORT it may help you. http://www.mainframegurukul.com/MainframeGuru/viewtopic.php?t=3602 Frank -> I have also asked a question, if you can have a look when you get a cha...
by Veera
Fri Nov 14, 2008 11:12 pm
Forum: DFSORT , ICETOOL & Utilities
Topic: Split Files with Headers and Trailers using DFSORT
Replies: 3
Views: 11417

Split Files with Headers and Trailers using DFSORT

//JS010 EXEC PGM=ICETOOL //TOOLMSG DD SYSOUT=* //DFSMSG DD SYSOUT=* //* //IN DD * HEAD1 11111 22222 33333 44444 TAIL1 //* //OUT1 DD DSN=ABC.OUT1, // DISP=(MOD,CATLG,DELETE), // UNIT=SYSDA, // SPACE=(CYL,(1,1),RLSE), // DCB=(RECFM=FB,LRECL=5,BLKSIZE=0) //OUT2 DD DSN=A...
by Veera
Thu Nov 13, 2008 2:54 am
Forum: JCL
Topic: In jcl i have 100STEP but i am execute only STEP20 to STEP25
Replies: 3
Views: 8794

One way of achieving it. /STEP001 EXEC PGM=IEBEDIT ********************************************* SYSPRINT DD SYSOUT=* SYSOUT DD SYSOUT=* SYSUT1 DD DISP=SHR, DSN=test.pds(XXXXXXXX) -> Give the original JCL along with the member name here. SYSUT2 DD SYSOUT=(*,INTRDR) SYSIN DD * EDIT TY...
by Veera
Thu Nov 13, 2008 2:25 am
Forum: COBOL
Topic: Comparing 2 files based on Acct number without using tables
Replies: 7
Views: 18281

Rajini,

I have posted one sample ICETOOL utility which can be used for matching
of 2 files on key. I am wondering if you can use a utility rather than a COBOL program.

http://www.mainframegurukul.com/Mainfra ... php?t=3596

Thanks,
Veera.
by Veera
Thu Nov 13, 2008 2:19 am
Forum: DFSORT , ICETOOL & Utilities
Topic: Simple Match of 2 Files on Key field
Replies: 1
Views: 7543

Simple Match of 2 Files on Key field

Rajini has posted one question in COBOL forum, this can be used if Rajini can use ICETOOL utility rather than COBOL. //JS010 EXEC PGM=ICETOOL //TOOLMSG DD SYSOUT=* //DFSMSG DD SYSOUT=* //* //IN DD * input file1 11111 22222 // DD * input file2 33333 11111 /* //OUT1 DD SYSOUT=* //TOOLIN DD * SELECT FR...
by Veera
Mon Nov 10, 2008 6:43 am
Forum: Admin Announcements
Topic: STAR MEMBER AWARD - OCTOBER 2008
Replies: 4
Views: 11708

Congrats Dick Brenholtz.

Dick is one of the active users not only in this forum but couple of other tech forums too. All his posts are very informative and good. He is a value add to any forum. I really apprecaite him for his good work.

Thanks,
Veera.