BookmarkSubscribeRSS Feed

[SAS 활용 FAQ] 32bit에서 만들어진 dataset을 64bit에서 어떻게 읽나요?

Started ‎07-28-2021 by
Modified ‎07-28-2021 by
Views 304

32bit PC에서 PROC CPORT로 만든 파일을 64bit에서 PROC CIMPORT로 읽어서 dataset을 생성하셔서 사용하시면 됩니다.

 

[32bit PC 에서 내보내기]

  1. PC 에서 SAS 실행.
  2. 아래 코드를 활용하여 내보내기.
    libname a "c:\temp";
    proc cport library =a file="c:\temp\test.dat";
    run;

 

[64bit PC 에서 읽기]

libname b "c:\temp";

proc cimport library=b file ="C:\temp\test.dat" ;
run;

Version history
Last update:
‎07-28-2021 09:32 PM
Updated by:
Contributors

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

Article Labels
Article Tags