Search found 7 matches

by sowjanya
Fri Oct 14, 2011 1:21 pm
Forum: COBOL
Topic: how to insert,update,view,delete records in a KSDS file.
Replies: 5
Views: 17133

SELECT OUTFILE ASSIGN TO DD1 ORGANIZATION IS INDEXED ACCESS MODE IS DYNAMIC RECORD KEY IS ENO FILE STATUS IS FS1. DATA DIVISION. FILE SECTION. FD OUTFILE. 01 EMPREC. 05 ENO PIC X(4). 05 ENAME PIC X(20). 05 ESAL PIC 9(5). 05 FILLER PIC X(56). WORKING-STORAGE SECTION. 01 FS1 PIC 9(2). 01 OPT PIC X VAL...
by sowjanya
Thu Oct 13, 2011 3:52 pm
Forum: COBOL
Topic: how to insert,update,view,delete records in a KSDS file.
Replies: 5
Views: 17133

how to insert,update,view,delete records in a KSDS file.

Hi, Can any one please help me out in giving a sample code for insertion, deletion, updation,viewing records in file using a cobol program with only one output file which is KSDS file and accepting inputs from JCL and write the records in that output KSDS file. RECORD KEY IS ENO We tried inserting t...
by sowjanya
Wed Jul 13, 2011 3:34 pm
Forum: FILE-AID
Topic: Star-tool material
Replies: 2
Views: 10835

Star-tool material

Hi,

Can any one provide me STAR-TOOL material as i searched in google and i could'n find.

Please help me out.

Thx,
Sowjanya
by sowjanya
Fri Nov 14, 2008 8:18 am
Forum: JCL
Topic: how to split files which has header and trailor
Replies: 10
Views: 21549

If not SyncSort DFSORT is also fine..

Hi frank,
I need other logic for the one posted..it may also be using DFSORT also is fine.

Thanks,
sowjanya
by sowjanya
Thu Nov 13, 2008 5:26 pm
Forum: JCL
Topic: how to split files which has header and trailor
Replies: 10
Views: 21549

another logic required

thanks
by sowjanya
Wed Nov 12, 2008 8:44 am
Forum: JCL
Topic: how to split files which has header and trailor
Replies: 10
Views: 21549

giving an error

Its giving an error at startrec
by sowjanya
Tue Nov 11, 2008 10:56 am
Forum: JCL
Topic: how to split files which has header and trailor
Replies: 10
Views: 21549

how to split files which has header and trailor

I want to split a file contaning 188451 records along with header and trailor into 2 files where in two files should be exactly has half of records with header and trailor. I tried using the SPLIT function in SYNCSORT but am getting error. SORT FIELDS=COPY,SKIPREC = 1,STOPAFT = 94225 * OUTFIL FILES=...