由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - [问题]sql into产生宏变量长度的限制
相关主题
请教统计问题。大家一般有什么软件做association study?
请问这个程序的OUTPUT为啥跟我想的不一样。。。。问个genmod的问题,包子答谢
请教proc sql处理missing value的问题sas nlmixed 问题请教兼问好的sasforum
question about proc format请教一个SAS选择性输出数据的问题,急,有包子
问个BASE题目求教个SQL的问题
求大侠指点,GEE macro in SASProc Surveyselect中, 当 reps >=2 时, 样本重复
proc surveymeans output 被truncate[合集] 说一个proc sort的很简单却总有人错的问题
[合集] can anyone tell me what PROC I should use on this problem?问个sas编程的题
相关话题的讨论汇总
话题: longlist话题: sql话题: test话题: note话题: data
进入Statistics版参与讨论
1 (共1页)
a*****3
发帖数: 601
1
一个很简单的sql into:语句,比如
proc sql;
select namelist into :longlist
from dataset1
having purchase = min(purchase);
quit;
问题1: 我这个longlist长度大概200~300,sas 报错如下:
Data too long for column "longlist";
truncated to 60 characters to fit.
问题2: 同时报第二个错如下:
NOTE: The query requires remerging summary statistics back with the original
data.
谁碰到过类似note?
a*****3
发帖数: 601
2
还有我印象里宏变量默认长度是256(?),怎么这个报错说截成60了?
s******y
发帖数: 352
3
1. I can not replicate the first the error with length set as 800.
data test;
length test $800;
test=repeat('a',800);
put test=;
run;
proc sql;
select test into :list from test;
quit;
%put >&list<;
2. it is not an error. you get the note, because the variable you select is
not in the GROUP by clause and aggregation functions.

【在 a*****3 的大作中提到】
: 还有我印象里宏变量默认长度是256(?),怎么这个报错说截成60了?
a*****3
发帖数: 601
4
感谢微笑男looking into the issue. 伪币30请查收
s******y
发帖数: 352
5
thanks. I will bet all the BAOZI for this week's NCAA game. if I win, we
will split.

【在 a*****3 的大作中提到】
: 感谢微笑男looking into the issue. 伪币30请查收
h*********y
发帖数: 183
6
宏变量长度好像有10000多字节,应该不止这么少
1 (共1页)
进入Statistics版参与讨论
相关主题
问个sas编程的题问个BASE题目
sas proc means/freq问题求大侠指点,GEE macro in SAS
请问sas里,怎么在PROC IMPORT的时候指定变量的格式proc surveymeans output 被truncate
help for sas program[合集] can anyone tell me what PROC I should use on this problem?
请教统计问题。大家一般有什么软件做association study?
请问这个程序的OUTPUT为啥跟我想的不一样。。。。问个genmod的问题,包子答谢
请教proc sql处理missing value的问题sas nlmixed 问题请教兼问好的sasforum
question about proc format请教一个SAS选择性输出数据的问题,急,有包子
相关话题的讨论汇总
话题: longlist话题: sql话题: test话题: note话题: data