Date: Fri, 18 Feb 2005 15:44:31 -0500
Reply-To: Ya Huang <ya.huang@AMYLIN.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Ya Huang <ya.huang@AMYLIN.COM>
Subject: Re: ERROR: CIMPORT is not able to read XPORT engine data sets ???
From the error message, it seems to me that your transport file
was created by xport engine instead of proc cport. You may try
something like:
libname newlib 'h:\jim';
filename trans3 XPORT 'h:\jim\CART2_20050217.xpt';
proc copy in=trans3 out=newlib;
run;
Kind regards,
Ya
On Fri, 18 Feb 2005 13:32:25 -0500, Igor Kurbeko
<ikurbeko@ATHEROGENICS.COM> wrote:
>Hi, guys.
>
>I have a trasport file.
>
>When I try to extract files I get the following error.
>
>
>
>Thanks
>
>
>
>libname newlib 'h:\jim';
>
>filename trans3 'h:\jim\CART2_20050217.xpt';
>
>
>
>proc cimport library=newlib memtype=data infile=trans3;
>
>run;
>
>
>
>
>
>
>
>ERROR: CIMPORT is not able to read XPORT engine data sets.
>
>NOTE: Please refer to the host companion for your operating system
>
>
>
>Igor Kurbeko
>
>Clinical Programmer Analyst
>
>678 336 4328
>
>ikurbeko@atherogenics.com
>
>
>
>Amateurs hope, professionals work
>
>
>
>
|