Can we copy a sequential file to a VSAM file ? If yes, What
will happen of the size of the sequential file is bigger
than that of the VSAM file?
Answers were Sorted based on User's Feedback
Answer / nadeem
u can copy a ps into vsam but the ps file should be sorted
in some order before copying into vsam..if u r using
RECFM=FB then u wont have any prob while copying from ps to
vsam..
| Is This Answer Correct ? | 23 Yes | 1 No |
Answer / guest
ANS 1: if the input file is empty no problem. MAXCC=0.
ANS 2; If the input file contains atleast 1 rec, you will
get the folloing error meg.
============================================================
REPRO -
INFILE(INDD) -
OUTFILE
(OUTDD)
IDC3302I ACTION ERROR ON
T0629VR.VSAM.ESDS
IDC3351I ** VSAM I/O RETURN CODE IS 108 - RPLFDBWD =
X'8408006C'
IDC31467I MAXIMUM ERROR LIMIT REACHED.
IDC0005I NUMBER OF RECORDS PROCESSED WAS 12
IDC3003I FUNCTION TERMINATED. CONDITION CODE IS 12
IDC0002I IDCAMS PROCESSING COMPLETE. MAXIMUM CONDITION CODE
WAS 12
RETURN CODE 108 MEANS ==>RECLEN specified was larger than
the maximum allowed
| Is This Answer Correct ? | 17 Yes | 4 No |
Answer / kishore
If you give the RECFM=FB, then you can give the same record
length of that VSAM file.
If it VB, you should give LRECL is 4 + LRECL of VSAM file.
You can use, IDCAMS or IEBGENER for copy
| Is This Answer Correct ? | 2 Yes | 0 No |
What is the COBOL RECORD KEY clause?
Under IDCAMS , multiple functions can be executed, each of which returns a cond code. What will be the condition code returned to the operating system ?
if you wish to use the rewrite command how must the vsam file be opened?
what how do you initialize a vsam file before any operation? A vsam with alternate index?
What are the distinctive features of a ksda, key sequenced dataset?
How do you define an altindx?
Hi, I want to create alternate index on VSAM file.my file structure is ex: RoomID pic x(7) R000001 Floor pic a((6) First RoomNo pic x(2) FA1 Occupied(yes/no) pic a(3) Yes Occupied Batch pic x(10). Maths i want to create alternate index on floor,roomno fields.can i create alternate index on both the fields.and tell me how to create.
How is the sorting of vsam files carried?
What is a ci split? What is a ca split?
What is the use of KSDS,LDS,ESDS,RRDS??what is VRRDS?? How are all these useful in realtime scenario??Plz helpme out...Its a recent question in IGATE..
What is the difference between CI( Control Interval)and CA (Control Area)?
HOW TO SORT RECORDS IN VSAM FILE?