- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Load Text File() File Size Limit?
Hi. I was wondering if anyone knows what the file size limit is for using the Load Text File() function? I've imported text files up to 1GB, but noticed it fails somewhere at or above 2GB for my system. Knowing this limit would be nice so I could warn the user ahead of time that the file is too big to open. I understand it may be system dependent, but if anyone knows how this limit could be estimated, that would be great. Thanks.
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Load Text File() File Size Limit?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Load Text File() File Size Limit?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
(Re: Load Text File() File Size Limit?
I've loaded recently a csv file with 310 million rows (17GB)! Worked!! Quite impressive....
Cheers,
Kofi
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: (Re: Load Text File() File Size Limit?
@Monomorphist using open() or multiple file import() ? Both of those read the file, incrementally, from disk, avoiding the 2G limit. Open() may read the file more than once. MFI could be a lot faster, especially if you have more than one file to load at the same time.
@nikles I probably should have asked: what sort of data is in the text file? Maybe there is another approach.