how will you define vsam file in select clause?
Answers were Sorted based on User's Feedback
Answer / snehatechm
select xxxx assign to dd1
organization is indexed
access is dynamic
record key is vsam-key
file status is file-status vsam-code.
| Is This Answer Correct ? | 9 Yes | 0 No |
Answer / adarsh562
select file-name assign to dd-name
organization is indexed
access mode is sequential
record key is key-name
file status is fs-code.
| Is This Answer Correct ? | 2 Yes | 0 No |
select file-name assign to A-ddname
organization is indexed
access mode is sequential
record key is key-name
file status is fs-code.
| Is This Answer Correct ? | 0 Yes | 0 No |
there is a file whose ORGANISATION is INDEXED.you want to read the records from the file in RANDOM fashion as well as sequentially.then which of the access mode would you specify? a.SEQUENTIAL b.RANDOM c.DYNAMIC D.ACCESS MODE has nothing to do with it
Are you comfortable in cobol or jcl?
Hi................... I have records like this aaaa cccc bbbb And i want output like this bbbb cccc aaaa How can it possible ?. Note:Please make sure records are in unsorted order. somebody plzzz help me.
which certifications r 4 cobol,jcl,db2,cics what is format of xam n what is importance of these certifications... plz post answer only if u r sure... thanks
what is sort? whis is internal & external sort ?when do u go for inter sort & external sort? tell about some sort utilites?
where did you see the information regarding abend codes in jcl?
In a COBOL II PERFORM statement, when is the conditional tested, before or after the perform execution?
Minimum how many Number of Paragraphs are there in ID- Divison?
I got user abend U4038 while compiling my runjcl.. can anyone help me?
In an EVALUATE statement, can I give a complex condition on a when clause?
What are the two search techniques ?
i have a sequencial file contains multiple records, i want to extract one row which contains various fields like order number,date,warehouse,.ect.. in to the another file by accepting the order number from jcl. how can i do it. pls help me..