BookmarkSubscribeRSS Feed
aswinappus
Calcite | Level 5

I'm trying to access a mainfram file(Fixed format file) in SAS. Is there an option to get the record length of the file? 

7 REPLIES 7
Reeza
Super User

If you read it in using _infile_ you should get the RECL in the log.

 

If it's a fixed format file, you'll need a standards doc though otherwise parsing it out is going to be a pain in the neck.

Cynthia_sas
Diamond | Level 26
If the file is catalogued, the LRECL should be available from the system catalog.

cynthia
aswinappus
Calcite | Level 5

Yes, it is a fixed format file. 

Kurt_Bremser
Super User

Fixed format files do have a structure in the program that created them. Most often, that structure is not kept within the program, but an external include file. Get hold of that include file, and use it to write your data step. After you have accounted for all variables, add the lengths of the used formats.

This is a major part of my work, as my source data comes from DB/2 running on a virtual MF environment on Linux.

aswinappus
Calcite | Level 5

Thanks!, But, did you mean to use the copybook of the mainframe file?

Kurt_Bremser
Super User

@aswinappus wrote:

Thanks!, But, did you mean to use the copybook of the mainframe file?


I don't know what you mean by copybook in this context. Our external file strcutures are kept as PL/1 include files.

The easiest way to get the metadata of mainframe files is to log on to the mainframe and use the ISPF/PDF services from TSO to display file information.

Cynthia_sas
Diamond | Level 26
HI:
If you have COBOL copybooks you might research an older routine called "COB2SAS" that could take a COBOL file definition and turn it into a SAS INPUT statement for the purpose of reading a file created with COBOL into SAS format.

cynthia

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

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
  • 3305 views
  • 0 likes
  • 4 in conversation