BookmarkSubscribeRSS Feed
lulust
Calcite | Level 5

hi !,

I have a text file that has 700 columns, which is very important for my daily work, normally separated into 3 files to finally re-unite in sas, I wonder which is the maximum of columns that can be imported into sas and what version?

thanks for your help! Smiley Happy

7 REPLIES 7
SASKiwi
PROC Star

700 columns should not be a problem for any SAS version. I suspect that your record lengths are likely to be large so you may have to experiment with setting record lengths in SAS.

Are your text file columns delimited or in fixed columns? Does it have a column name header or not?

lulust
Calcite | Level 5

yes, mi file its delimited by "|" and alll de columns have a name header. thanks for your answer,

how i can check the setting record lengths in SAS?

SASKiwi
PROC Star

I would try reading the file as a test, as the SAS log will report on the record length:

data test;

  infile "c:\test.txt" obs = 10;

  input;

  put _infile_;

run;

lulust
Calcite | Level 5

i will tri, thanks! 😃

Ksharp
Super User

As I remember rightly, there are not limitation for number of columns . above  9.2

tomasz
Calcite | Level 5

     There is SAS option LS or LRECL. You can set how many chars read from text file.

lulust
Calcite | Level 5

thank, exactly what I needed. Smiley Wink

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 7 replies
  • 2475 views
  • 0 likes
  • 4 in conversation