8# elek.me
我试了 因为txt 文档有1.25G所以用txt本身打不开,用SAS run的时候 提示这个 ,然后结果文件 中有0个observation,没结果
是不是因为txt打不开的文件(因为太大),sas也run不出来啊?
1853 data have;
1854 infile "d:\sas\A.txt" pad;
1855 input @"Filing Date: " filing_date yymmdd8. @"Owner Name:
1856 " owner_name $200.;
1857 format filing_date yymmddn.;
1858 label filing_date="Filing Date"
1859 owner_name="Owner Name";
1860 run;
NOTE: The infile "d:\sas\A.txt" is:
Filename=d:\sas\A.txt,
RECFM=V,LRECL=256,File Size (bytes)=1343891243,
Last Modified=22Dec2010:11:54:58,
Create Time=23Dec2010:14:04:46
NOTE: 36440382 records were read from the infile "d:\sas\A.txt".
The minimum record length was 1.
The maximum record length was 256.
One or more lines were truncated.
NOTE: SAS went to a new line when INPUT @'CHARACTER_STRING' scanned past the end of a line.
NOTE: The data set WORK.HAVE has 0 observations and 2 variables.
NOTE: DATA statement used (Total process time):
real time 35.40 seconds
cpu time 34.82 seconds