i followed below jcl ,
**Define a Page Space in another Catalog:

 //STEP1 EXEC PGM=IDCAMS
 //VOLUME DD VOL=SER=VSER05,UNIT=DISK,DISP=OLD
//SYSPRINT DD SYSOUT=A
 //SYSIN DD * DEFINE ALIAS (NAME(SYS2) RELATE(MASTCAT.SYSTEM2))
    DEFINE PAGESPACE -
   (NAME(SYS2.PAGE2) -
    CYLINDERS(10) -
    VOLUMES(VSER05)
    ALTER SYS2.PAGE2 NEWNAME(SYS1.PAGE2) CATALOG(MASTCAT.SYSTEM2)
     ALTER SYS2.PAGE2.DATA NEWNAME(SYS1.PAGE2.DATA) -
     CATALOG(MASTCAT.SYSTEM2)
 /*

this time i'm getting

"IEA247I USING IEASYS21 FOR z/OS 02.01.00 HBB7790

ISG313I SYSTEM IS INITIALIZING IN GRS NONE MODE.  RING OR STAR
CONFIGURATION
 KEYWORDS IN GRSCNF00 ARE IGNORED.

IEA836I PAGE DATA SET  SYS1.PAGE2

       * NOT ALLOCATED - ERROR CODE 0264 INFORMATION CODE 0000  *
    "

Guess, its understand page dataset but throws some error code.

Note : i have tried it in on  my RDZ .




On Sun, Sep 16, 2018 at 4:11 PM Seymour J Metz <[email protected]> wrote:

> That depends. Best practice is to use unique names for the page datasets
> in IEASYSxx PAGE=, in which case they don't present a conflicts.  You can
> even have identical IEASYSxx members if you use static system symbols to
> generate names specific to the LPAR.
>
>
> --
> Shmuel (Seymour J.) Metz
> http://mason.gmu.edu/~smetz3
>
> ________________________________________
> From: IBM Mainframe Discussion List <[email protected]> on behalf
> of retired mainframer <[email protected]>
> Sent: Saturday, September 15, 2018 12:53 PM
> To: [email protected]
> Subject: Re: how to catalog page dataset to new MCAT
>
> Will your Z110S and Z210M systems run simultaneously in different LPARs?
> If so, then you do not want to copy the catalog entry.  This will cause
> both systems to try to use the same page dataset on the same volume.  In
> this case you need to define new page datasets for Z210M.  See the "DEFINE
> PAGESPACE" command in your "Access Method Services for Catalogs" manual.
>
> If the two systems will run in the same LPAR (obviously not
> simultaneously) and you really want to use the same page datasets for both,
> then you need to determine the names of the datasets in the current
> system.  Look up the "D ASM" command in your "MVS System Commands" manual.
> Then you can copy the catalog entries to your new master catalog **and**
> update the PAGE parameter in your new IEASYSxx.
>
> > -----Original Message-----
> > From: IBM Mainframe Discussion List <[email protected]> On
> > Behalf Of johnnydeep san
> > Sent: Saturday, September 15, 2018 4:19 AM
> > To: [email protected]
> > Subject: Re: how to catalog page dataset to new MCAT
> >
> > I used  todd's jcl  and it ran fine but still getting same issue .
> >
> >    REPRO INDATASET(CATALOG.Z110S.MASTER) -
> > 00210004
> >          OUTDATASET(CATALOG.Z210M.MASTER) -
> >  00220004
> >          LEVEL(SYS1.PLPA.PAGE)            -
> >  00221004
> >          MERGECAT
> >  00222004
> > IDC01460I THE NUMBER OF ENTRIES MERGED WAS 0
> >
> > IDC0001I FUNCTION COMPLETED, HIGHEST CONDITION CODE WAS 0
> >
> >
> >
> > Should pagedatast locate in new master catalog(CATALOG.Z210M.MASTER)
> > volume ? .
> > I haven't  any page datasets in  new master catalog volume, it's located
> in
> > old  master catalog  volume . how to make understand this page datasets
> to
> > new master catalog ? .guide me.
>
> ----------------------------------------------------------------------
> For IBM-MAIN subscribe / signoff / archive access instructions,
> send email to [email protected] with the message: INFO IBM-MAIN
>
> ----------------------------------------------------------------------
> For IBM-MAIN subscribe / signoff / archive access instructions,
> send email to [email protected] with the message: INFO IBM-MAIN
>

----------------------------------------------------------------------
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [email protected] with the message: INFO IBM-MAIN

Reply via email to