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?
Answer Posted / 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 |
Post New Answer View All Answers
what do you mean by a upgrade set in vsam?
What is the main function of key sequenced data set in vsam?
What is the use of access method services in vsam?
What are the different commands used in idcams for vsam?
What is speed parameters in define cluster command?
OPEN INPUT StudentFile READ StudentFile AT END SET EndOfStudentFile TO TRUE END-READ PERFORM UNTIL EndOfStudentFile DISPLAY StudentId SPACE StudentName SPACE CourseCode SPACE YOBirth READ StudentFile AT END SET EndOfStudentFile TO TRUE END-READ END-PERFORM CLOSE StudentFile STOP RUN what will be output
we can define the ksds cluster by two ways by using the file-aid or by using the idcams utility. Explain them.
What is the function of entry sequenced data set?
What is the purpose of idcams?
what is meant by dirty read in vsam?
what do you mean by a shareoptions parameter (shr) in define cluster command?
explain in brief why do vsam take more disk space than other utilities?
write a program to read from a VSAM file , there will be a 5 records to create name. empno. resignation and address to update in a db2 table and call another program using dynamic call to find the matching fields in program 1 to update in db2 table. anybody pls send de program for dis ? thanks in advance...
What are the steps involved in access method services?
what is a base cluster in vsam?