Meta Search
search across all the following databases:
Data Catalog
Data and documentation
KnowledgeBase
Common questions and answers.
Resources
Entire collection of data resources.
Lessons from North of the Border
Nerd Alert: Dictionary of Numbers
The default record length for input and output raw ASCII files is 256 characters. If the input statement is identifying variables beyond the 256th column, SAS goes to the next line for the additional characters.
To solve this problem, identify the record length on the infile and/or file statement. In this example, both the input and output files are identified as being 500 columns wide.
*********************************************************************** data test; infile '/usr/shared/test.dat' lrecl=500; input sex 3-3 age 201-202 income 495-500; file out lrecl=500; put sex 3-3 age 201-202 income 495-500; end;
It does not hurt if you specify an LRECL larger than your actual record length.