BookmarkSubscribeRSS Feed

[SAS 프로그래밍 고수 백승민] [EXPORT] PROC EXPORT 에서 변수명 없이 데이터 방출 하기(PUTNAMES)

Started ‎06-11-2020 by
Modified ‎06-11-2020 by
Views 157

* 출처 : http://cafe.daum.net/statsas/3F8j/146

 

V9.2에서는 PUTNAMES 옵션이 생겨서 PROC EXPORT시 변수명을 삭제하고 데이터 방출이 가능합니다.

 PROC EXPORT DATA=sashelp.class
            OUTFILE='d:\invoice.csv'
            DBMS=DLM REPLACE;
     DELIMITER=',';
     PUTNAMES=NO;
RUN;

Version history
Last update:
‎06-11-2020 03:51 AM
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