Page 1 of 1

Size of Sequential File

Posted: Thu May 05, 2005 3:35 pm
by narasimha
A quick question

Does anybody know how much of data can be put into a sequential file?
There should be a limitation, like anything else. :(
I tried to search in the forum, it returned many results, but not what I exactly wanted.

Posted: Thu May 05, 2005 6:53 pm
by kiran_418
I guess there is no limit for size in sequential file.

Posted: Thu May 05, 2005 8:25 pm
by kduke
The ulimit command will describe how big a file you can create. You also need that much space on the disk drive.

Re: Size of Sequential File

Posted: Fri May 06, 2005 4:34 pm
by yaminids
There is no limit on the size of the sequential file. You should be careful about the 'ulimit'. If you are dealing with a large sequential file, its always better to set the file size in 'ulimit' to 'Unlimited'

-Yamini

Re: Size of Sequential File

Posted: Sat May 07, 2005 3:34 am
by ogmios
There's also the thing about OS restrictions... most of them are now either 4Gb or 4 TerraByte: to be able to keep track where you are in a file you a need to be able to address the offset (and this is usually OS dependent).

Ogmios