由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - SAS help needed: baozi will be given
相关主题
SAS proc printto 问题。SAS proc means qusetion, 3 baozi
请教SAS macro - please help, still not resolvedask for help (urgent): A SAS question
SAS问题求教每个ID出现一次,missing去掉,请问高手用SAS怎么做?
求教proc sql 问题排序的问题,请问高手用SAS怎么做?
SAS help求助:一个SAS小程序
请教一个用SAS作DATA MERGE的问题请问一个SAS proc sql的写法
[提问]怎样提取SAS Dateset的observation number?SAS快捷键问题
SAS code helpHow well is SAS/IML studio integrating with R.?
相关话题的讨论汇总
话题: sas话题: run话题: log话题: window话题: clear
进入Statistics版参与讨论
1 (共1页)
s***r
发帖数: 1121
1
I am running a large database (obs > 120 million). After several seconds, I
was told" window is full and needs to be cleared" - so I have to clear the
window without saving Manually.
I am tired of this. How can I have SAS do not show "window is full and needs
to be cleared"?
I tried:
options nonotes;
also tried:
dm 'output;clear;log;clear;'
options nodate pageno=1 formdlim="=";
but neither works.
Can anybody help me? thanks.
o****o
发帖数: 8077
2
does your SAS print out a lot of warning or error messages?
try options error=1; to limit error msg
it looks in SAS there is noway to turn off warning msg, but you can redirect your log output by using PROC PRINTTO log=&yourfile; RUN;
b******1
发帖数: 367
3
google一下error message吧,我记得sas support里有讲碰到这种怎么弄的
p********a
发帖数: 5352
4
run with SASview and you will never have such issues.
h****s
发帖数: 16779
5
PROC PRINTTO log = . print = .; RUN;
把log和output都存到硬盘上就好了。
s***r
发帖数: 1121
6
many thanks. Still struggling with this.
I also tried PROC PRINTTO log = . print = .; RUN; it does not work.
Whatis SASview? do I need to particularly set it up?
s*r
发帖数: 2757
7
run it in batch mode
s*r
发帖数: 2757
8
you have less than 50!
l***a
发帖数: 12410
9
use "noprint" option when you can. or just use "ods listing close". the idea
is to not to print unnecessary output

I
needs

【在 s***r 的大作中提到】
: I am running a large database (obs > 120 million). After several seconds, I
: was told" window is full and needs to be cleared" - so I have to clear the
: window without saving Manually.
: I am tired of this. How can I have SAS do not show "window is full and needs
: to be cleared"?
: I tried:
: options nonotes;
: also tried:
: dm 'output;clear;log;clear;'
: options nodate pageno=1 formdlim="=";

h****s
发帖数: 16779
10
你把那个 . 换成具体的路径/文件名了吗?
把你code贴来看看。

【在 s***r 的大作中提到】
: many thanks. Still struggling with this.
: I also tried PROC PRINTTO log = . print = .; RUN; it does not work.
: Whatis SASview? do I need to particularly set it up?

s***r
发帖数: 1121
11
PROC PRINTTO PRINT='c:\auto.lst' NEW;
By the way, it is the code to run a regression. many error messages coming
out.
p********a
发帖数: 5352
12
SAS system viewer-
http://www.sas.com/apps/demosdownloads/setupcat.jsp;jsessionid=1AFF36AD390889F9F51A814B9D52F0B3.tc4j3apps1?cat=SAS+System+Viewer
Just open your SAS programs with SAS viewer and click run. The log file and
list file will be generated automatically. It uses less memory than SAS
system.
1 (共1页)
进入Statistics版参与讨论
相关主题
How well is SAS/IML studio integrating with R.?SAS help
SAS 求助, 一个小问题, 包子答谢请教一个用SAS作DATA MERGE的问题
如何从sas output里读入数据。[提问]怎样提取SAS Dateset的observation number?
怎么避免sas batch模式打开sas文件SAS code help
SAS proc printto 问题。SAS proc means qusetion, 3 baozi
请教SAS macro - please help, still not resolvedask for help (urgent): A SAS question
SAS问题求教每个ID出现一次,missing去掉,请问高手用SAS怎么做?
求教proc sql 问题排序的问题,请问高手用SAS怎么做?
相关话题的讨论汇总
话题: sas话题: run话题: log话题: window话题: clear