You need to do an export of the system it is on and import it to the 
catalog that you want it to be in. Here is sample JCL:
//IODF16    DD DSN=SMULLER.IODF16,UNIT=SYSALLDA, 
//      SPACE=(TRK,(14,1)),DISP=(,CATLG) 
//IODF     DD DSN=SYS1.IODF16.CLUSTER,DISP=SHR 
//SYSPRINT DD   SYSOUT=* 
//SYSIN    DD   * 
 EXPORT SYS1.IODF16.CLUSTER TEMPORARY - 
        INFILE(IODF)- 
        OUTFILE(IODF16) 

Follow with an Import:
//IODF16    DD DSN=SMULLER.IODF16,UNIT=SYSALLDA, 
//      SPACE=(TRK,(14,1)),DISP=(,CATLG) 
//IODF     DD DSN=SYS1.IODF16.CLUSTER,DISP=SHR 
//SYSPRINT DD   SYSOUT=* 
//SYSIN    DD   * 
 EXPORT SYS1.IODF16.CLUSTER TEMPORARY - 
        INFILE(IODF)- 
        OUTFILE(IODF16) 

I hope this helps.


Pat Mihalec
Rush University Medical Center
Senior System Programmer
(312) 942-8386
pat_miha...@rush.edu
P   Please consider the environment before printing this email.



From:
larry macioce <mace1...@gmail.com>
To:
IBM-MAIN@bama.ua.edu
Date:
02/22/2010 08:49 AM
Subject:
catalog a vsam dataset in another catalog ?
Sent by:
IBM Mainframe Discussion List <IBM-MAIN@bama.ua.edu>



At first this sounds easy but let me explain:
I am working on putting up a COD..not the fish as we are coming from an
unsupported z/os .
I'd like to use my current IODF (or even the previous one) but herein lies
the problem.
I DON'T want to let the COD touch my catalog as it is interwined with my
production catalog...not I didn't do this someone else had the bright 
idea.
So what i want to do is copy the IODF and place it on the COD res pack
WITHOUT bringing up the COD(as it wouldn't work anyway)
Is there a way to do this?
thanks
mace

----------------------------------------------------------------------
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html


----------------------------------------------------------------------
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html

Reply via email to