What are the optional parameters to the input dataset While
loading the empty cluster with the data records?
Answer / guest
FROMADDRESS(address) TOADDRESS(address) where 'address'
specifies the RBA value of the key of the input record.
FROMNUMBER(rrn) TONUMBER(rrn) where 'rrn' specifies the
relative record number of the RRDS record FROMKEY(key)
TOKEY(key) where 'key' specifies the key of the input record
SKIP(number) COUNT(number) where 'number' specifies the
number of records to skip or copy Ex: REPRO INFILE(DD
OUTFILE(DD SKIP(900 COUNT(70 - Skips the first 9000 records
and begins copying at 9001 and copies 700 records from DD1
to DD2.
| Is This Answer Correct ? | 3 Yes | 0 No |
In the COBOL SELECT statement for a KSDS what are the three possibilities for ACCESS?
State the differences between vsam and non-vsam files?
What is the use of access method services in vsam?
Explain about the file objects in vsam?
we can define the ksds cluster by two ways by using the file-aid or by using the idcams utility. Explain them.
In a KSDS file, key is missing for one record. How to insert the key for that particular record from back up file. Is there any sorting needed for the back up file before the key insertion?
what is the concept of AIX in vsam ????
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
What is the function of entry sequenced data set?
what is the drawback of vsam dataset?? a.execution slow. b.free space. c.independent storage device. d.none of the above. let me know the answer with reason.
Explain the catalog?
What is IDCAMS? and what is the purpose of it?