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 (August 1996, week 3)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
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
Comments: To: advisory@bureau.ucc.ie

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


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