BookmarkSubscribeRSS Feed

PC 32 bit 의 데이터셋을 PC 64 bit 변환 가이드

Started ‎03-26-2021 by
Modified ‎03-26-2021 by
Views 673

*data conversion

* 원천데이터를 사용하는 SAS 환경(: SAS 9.4-한국어) 에서 내보내기 작업 실행.

1) PC 에서 SAS 실행.

2) 아래 코드를 활용하여 내보내기.

 

/*Data가 있는 공간 라이브러리 선언*/

libname a "c:\temp";

 

/*해당 라이브러리에 들어있는 table 내보내기 실행*/

proc cport library=a file="c:\temp\test.dat";

run;

 

     * 32bit PC 에서 생성된 test.dat 파일을 64bit PC로 이동. 

1) 아래 코드 실행.

/*data를 저장할 라이브러리 선언*/

libname b "c:\temp";

 

/*data 불러오기 실행*/

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

run;

Version history
Last update:
‎03-26-2021 04:21 AM
Updated by:
Contributors

sas-innovate-white.png

Special offer for SAS Communities members

Save $250 on SAS Innovate and get a free advance copy of the new SAS For Dummies book! Use the code "SASforDummies" to register. Don't miss out, May 6-9, in Orlando, Florida.

 

View the full agenda.

Register now!

Article Labels
Article Tags