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

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

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