Date: Mon, 19 Aug 1996 16:32:24 -0700
Reply-To: Bruce Rogers <gxx18300@GGR.CO.UK>
Sender: "SAS(r) Discussion" <SAS-L@UGA.CC.UGA.EDU>
From: Bruce Rogers <gxx18300@GGR.CO.UK>
Organization: Glaxo Wellcome
Subject: Re: Cannot create catalog
ADVISORY@BUREAU.UCC.IE wrote:
>
> I wonder can anyone help with the following
> output which I received from a SAS run. Why is the Catalog
<snip>
ERROR: The CATALOG FILE OPEN function is not supported by the V603
engine.
ERROR: Unable to open catalog CYSTIC.TRYCAT.
NOTE: The SAS System stopped processing this step because of errors.
NOTE: The PROCEDURE BUILD used 1.26 seconds.
Loretta,
The cause of the problem is that you're trying to open an old 16-bit
catalog in the new 32-bit version 6.11 To access this catalog, you'll
need to convert it to 6.11 using proc c16port and proc cimport,
something like this:
libname old '.....' ;
libname new '.....' ;
proc c16port c=old.catname;
run;
proc cimport c=new.catname;
run;
This should suffice; further options available.
HTH
Bruce