BookmarkSubscribeRSS Feed

[SAS 프로그래밍 고수 백승민] [화면] LOG출력 지정 및 금지( 나 님)

Started ‎06-11-2020 by
Modified ‎06-12-2020 by
Views 118

1. 로그내용을 파일로 받을 경우...

 

/** 로그내용을 d:\temp\log.log로 받겠다는거고요 **/
proc printto log="c:\log.log";
run;

 

/* 프로그램내용 */
data a;
set sashelp.class;
run;

 

/* 로그내용 다시 로그창에다가 -- 원래데로 복구 */
proc printto log=log;
run;

 

*2. 프로그램에 대한 내용을 로그창에다가 찍지않고 싶은경우;
options nonotes nosource ;
< 프로그램 내용>

Version history
Last update:
‎06-12-2020 03:17 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