home *** CD-ROM | disk | FTP | other *** search
- Newsgroups: bit.listserv.ibm-main
- Path: sparky!uunet!news.univie.ac.at!chx400!ira.uka.de!uni-heidelberg!rz.uni-karlsruhe.de!rz.uni-karlsruhe.de!rz79
- From: rz79@rz.uni-karlsruhe.de (Klaus Dilper)
- Subject: Re: MVS/XA Deleting an Indexed VTOC ???
- Message-ID: <rz79.10@rz.uni-karlsruhe.de>
- Sender: usenet@rz.uni-karlsruhe.de (USENET News System)
- Organization: Rechenzentrum, Universitaet Karlsruhe (Germany)
- References: <IBM-MAIN%92101412252072@RICEVM1.RICE.EDU>
- Date: Thu, 15 Oct 1992 08:44:26 GMT
- Lines: 40
-
- In article <IBM-MAIN%92101412252072@RICEVM1.RICE.EDU> Steve Greenfield <FEATS@VTVM1.BITNET> writes:
-
- >I am building an alternate Residence pack. I used FDR COPY to copy my
- >production res onto a test res volume. I did not exclude the indexed
- >vtoc dataset from the copy and I now have an indexed vtoc on my alternate
- >res with a name 'SYS1.VTOCIX.MVSRS1'. My alternate res is MVSRS2. How can
- >I delete this indexed vtoc so that I can define a new one called
- >'SYS1.VTOCIX.MVSRS2'?
-
-
-
- >- feats@vtvm1.cc.vt.edu
-
- Hallo, try using ICKDSF as follows
-
- //OSVTOC EXEC PGM=ICKDSF
- //DD1 DD DISP=SHR,UNIT=3380,VOL=SER=MVSRS2
- //SYSPRINT DD SYSOUT=*
- //SYSIN DD *
- BUILTIX DDNAME(DD1) OSVTOC PURGE
-
- if this doesn't work, because the INDEX name doesn't correspond with
- the VOLUME label, then you have to delete the VTOC INDEX on your
- current SYSRES MVSRS1 (as shown above) and then copy MVSRS1 to MVSRS2
- again. Now you have to allocate the new VTOC INDEX for both volumes as
- follows:
-
- //IXVTOC EXEC PGM=ICKDSF
- //DD1 DD UNIT=3380,VOL=SER=MVSRS1,DISP=(NEW,KEEP),
- // DSN=SYS1.VTOCIX.MVSRS1,SPACE=(ABSTR,(where it should take place)
- //DD2 DD UNIT=3380,VOL=SER=MVSRS2,DISP=(NEW,KEEP),
- // DSN(SYS1.VTOCIX.MVSRS2,SPACE=(ABSTR,(where it should take place)
- //SYSPRINT DD SYSOUT=*
- //SYSIN DD *
- BUILTIX DDNAME(DD1) IXVTOC
- BUILTIX DDNAME(DD2) IXVTOC
-
- hope this fits!
-
- Klaus
-