Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.

record lenght

cruzdelsur
Beginner
534 Views

Hi: a veryy simple question.What is the maximum record length in bytes for a direct acces file ?

Thanks in advance

0 Kudos
2 Replies
DavidWhite
Valued Contributor II
534 Views

This can be found in the documentation ...

Fixed-length: 2147483647 (2**31-1)

David

0 Kudos
ArturGuzik
Valued Contributor I
534 Views

Hi,

take a look at OPEN: RECL specifier Section of the compiler help. It is 2147483647 (2**31-1) for fixed, 2147483640 (2**31-8) for variable, while 32764 (2**15-4) for Segmented.

A.

0 Kudos
Reply