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.