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 (March 2000, week 2)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Mon, 13 Mar 2000 14:15:05 -0600
Reply-To:     "Gerard T. Pauline" <gpauline@FSMAIL.PACE.EDU>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         "Gerard T. Pauline" <gpauline@FSMAIL.PACE.EDU>
Organization: Pace University
Subject:      Thanks.
Content-Type: text/plain; charset=us-ascii

Gehard / Peter:

Thanks to Gehard Hellriegel and Peter Crawford for their suggestions on converting SAS v6 format libraries to SAS v8 libraries on our S/390.

-Gerry

Gerard T. Pauline Mgr, Internet/DB Applications Computer Systems, DoIT Pace University

===========================================================================

From Peter --

proc format library=<v6.formats> cntlout = work.bigcntl ; proc format library=<v8.formats> cntlin = work.bigcntl ; run;

===========================================================================

From Gehard --

... for the problem with lost Format-lib-source: there is an easy way out!

Use

proc format lib=old.library cntlout=temp; proc format lib=new.library cntlin=temp; run;

to do the conversion.


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