There are at least seven IDCAMS commands; name and explain
each of them ?.
Answer Posted / guest
ALTER modifies information for a catalog, alternate index,
cluster or path. BLDINDEX builds the alternate index, of
course. DEFINE is used for ALTERNATEINDEX, CLUSTER or PATH.
DELETE removes the catalog entry for a catalog, cluster,
alternate index or path. LISTCAT lists information about the
dataset. PRINT prints the dataset contents. REPRO copies
records from one file to another.
Is This Answer Correct ? | 18 Yes | 2 No |
Post New Answer View All Answers
in a cobol select statement for a ksds can you tell me what are the 3 possibilities for access?
What is a lds (linear data set) and what is it used for?
What does the keyranges parameter in define cluster command do?
explain how can you initialize a vsam file before any operation?
what does a file status of 02 on a vsam signifies?
What is a ci split?
what do you mean by recovery and speed parameters in define cluster command?
Differentiate between control interval (ci) and control area (ca)?
What are the different parameters that are used in vsam?
how do you create an alternate index ?
What are the steps involved in access method services?
explain how do you define a gdg in vsam?
how can you load a vsam data set with records ?
Can you delete vsam files with the delete option of the disposition parameter of jcl?
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