LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (June 1996, week 4)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Wed, 26 Jun 1996 11:13:45 PDT
Reply-To:     TWB2%Rates%FAR@GO50.COMP.PGE.COM
Sender:       "SAS(r) Discussion" <SAS-L@UGA.CC.UGA.EDU>
From:         TWB2%Rates%FAR@GO50.COMP.PGE.COM
Subject:      Re: Libnames on MVS

Hays, I will not say it is impossible to run your jobs on MVS against datasets on VM, but it would be worth a SUGI paper. If you keep the results on MVS, it will be easier. By the way, where is your raw data?

I normally allocate my MVS datasets in JCL. We (the list--not you) have previously discussed whether it is better to use JCL or libnames in MVS. I will try to cover both approaches.

If you use JCL, the creating JCL will look like: //NEWDISK DD DSN=HAYS.DISK.DATA.HISNAME, // UNIT=SYSDA, // SPACE=(CYL,(60,10)), // DISP=(NEW,CATLG,DELETE)

and you do not need a libname statement. Once the data exists, the JCL would look like: //OLDDISK DD DSN=HAYS.DISK.DATA.HISNAME,DISP=(OLD,KEEP,KEEP)

If you do not allocate in JCL, the libname to create a database will look like: LIBNAME NEWDISK 'HAYS.DISK.DATA.HISNAME' UNIT=SYSDA SPACE=(CYL,(60,10)) DISP=(NEW,CATLG,DELETE);

and the libname to use existing data will look like: LIBNAME OLDDISK 'HAYS.DISK.DATA.HISNAME' DISP=OLD;

By the way, this assumes disk--the syntax is slightly different for tape.

Tim Berryhill - Contract Programmer and General Wizard TWB2@PGE.COM Frequently at Pacific Gas & Electric Co., San Francisco The correlation coefficient between their views and my postings is slightly less than 0

----------------------[Reply - Original Message]---------------------- <SNIP> I am submitting the MVS jobs from my CMS ID and would prefer to get the physical file back on my CMS ID. Short of that, I could work with the file being created on MVS.


Back to: Top of message | Previous page | Main SAS-L page