BookmarkSubscribeRSS Feed
jimksas
Calcite | Level 5

please help...

i have 100k obs datasets with 8 variables (reading from raw data file) and wants to know real length before it arrives into SAS (real length of raw data) How can i do that using sas code? I am not sure if PROC IMPORT wizard gives me correct length from raw file because have some field with leading zeros length more than 8 and by default import wizard is showing length 10 only....

2 REPLIES 2
Tom
Super User Tom
Super User

Read them in and figure it out. 

%let nvars=8 ;

data lengths ;

  length varnum 8 name $32 length 8 value $30000;

  array names (&nvars) $32 ;

  array lengths (&nvars) ;

  infile "myfile.csv" dsd truncover lrecl=30000  end=eof ;

  do varnum=1 to &nvars;

     input name @ ;

     names(varnum) = name ;

  end;

  input;

  do until (eof);

     do varnum = 1 to &nvars;

       input value @;

lengths(varnum)=max(lengths(varnum),length(value));

     end;

     input;

  end;

  do varnum=1 to &nvars;

    name=names(varnum);

    length=lengths(varnum);

    output;

    keep varnum name length;

  end;

run;

jimksas
Calcite | Level 5

Tom - i tried to run your code with my file in your infile statement - it is giving me;

- 3 variables : varnum/name/length

- only one value for name variable (only 1st obs)

- 43 length value for 1st obs -  all rest obs has same value  which is 1

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

Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

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
  • 2 replies
  • 1291 views
  • 0 likes
  • 2 in conversation