vote up 7 vote down star
4

I am looking for a text editor that will be able to load a 4+ Gigabyte file into it. Textpad doesnt work. I own a copy of it and have been to its support site, it just doesnt do it. Maybe I need new hardware, but that's a different question. The editor needs to be free OR, if its going to cost me, then no more than $30. For Windows.

flag

Ok, I withdraw my answer since there are far better answers posted. But I am curious--why do you need to load an entire 4GB+ file into an editor all at once? – Onorio Catenacci Sep 19 '08 at 15:32
I have to import very large files, they are provided to me and I dont know their content. While working with them I have had need to find out what is wrong with a record deep into the file. I've got to load the entire file to get to record number 3,284,992 - as an example. TextPad wont load at all. – Optimal Solutions Sep 19 '08 at 15:35
Ok, that makes sense. May I suggest that (assuming your dealing with text files) you might want to try to use Gawk or something similar to try to find the line in which you're interested. I mean would it be possible for you to define what your error looks like and use Awk/Gawk to go directly to it? – Onorio Catenacci Sep 19 '08 at 17:08

15 Answers

vote up 5 vote down check

I've had to look at monster(runaway) log files (20+ GB). I used hexedit(http://www.download.com/3001-2352_4-10823211.html) FREE version which can work with any size files. It is also open source. Cool ?

link|flag
Good link anjanb – Onorio Catenacci Sep 19 '08 at 17:09
This is looking good. – Optimal Solutions Sep 19 '08 at 20:44
vote up 0 vote down

For windows, unix, or Mac? On the Mac or *nix you can use command line or GUI versions of emacs or vim.

For the Mac: TextWrangler to handle big files well. I'm not versed enough on the Windows landscape to help out there.

link|flag
vote up 2 vote down

Emacs can handle huge file sizes and you can use it on Windows or *nix.

link|flag
1  
My experience with emacs for large file was not very bright. It seems it was trying to load the entire file in memory. Is there any option to prevent emacs to do so? – Martin Cote May 13 at 14:02
vote up 2 vote down

Jeff Atwood has a post on this here: http://www.codinghorror.com/blog/archives/000229.html

He eventually went with Edit Pad Pro, because "Based on my prior usage history, I felt that EditPad Pro was the best fit: it's quite fast on large text files, has best-of-breed regex support, and it doesn't pretend to be an IDE."

link|flag
Thanks - will check this one out. – Optimal Solutions Sep 19 '08 at 15:36
vote up 0 vote down

It's really tough to handle a 4G file as such. I used to handle larger text files, but I never used to load them in to my editor. I mostly used UltraEdit in my previous company, now I use Notepad++, but I would get just those parts which i needed to edit. (Most of the cases, the files never needed an edit).

Why do u want to load such a big file in to an editor? When I handled files of these size, I used GNU Core Utils. The most common operations i performed on those files were head ( to get the top 250k lines etc ), tail, split, sort, shuf, uniq etc. It's really powerful.

There's a lot of things you can do with GNU Core Utils. I would definitely recommend those, instead of a new editor.

link|flag
I dont want to load the entire file but I have to. When SSIS tells me there is a problem at record number 1,288,982 and I cant even load the file in TextPad - I figured I'd ask the community what they do. I cant even see the problem in the input file. I just know its there. – Optimal Solutions Sep 19 '08 at 15:38
if you can get the exact line number, you can do these with core utils. head -n LINECOUNT + 100 originalfile.txt > temp.txt tail -n 100 temp.txt > exactarea.txt Just a suggestion. – Socratees Sep 19 '08 at 16:03
vote up -1 vote down

What OS and CPU are you using? If you are using a 32-bit OS, then a process on your system physically cannot address more than 4GB of memory. Since most text editors try to load the entire file into memory, I doubt you'll find one that will do what you want. It would have to be a very fancy text editor, that can do out-of-core processing, i. e. load a chunk of the file at a time.

You may be able to load such a huge file with if you use a 64-bit text editor on a computer with a 64-bit CPU and a 64-bit operating system. And you have to make sure that you have enough space in your swap partition or your swap file.

link|flag
I have a 32-bit (WinXP) on 2G RAM. Downloaded UltraEdit demo, and it works. Just dont know if I can get the funds to pay for that right now. The swap file thing works if you've got 4GB+ swap and you boot up and try to load that huge file ASAP. Once the swap file gets fragged - it wont work. – Optimal Solutions Sep 19 '08 at 15:40
"a processor with 32-bit memory addresses can directly access 4 GB of byte-addressable memory." en.wikipedia.org/wiki/32-bit As I said, the only way this can possibly work on a 32-bit system, is if the editor only loads a chunk of the file into memory at a time. – Dima Sep 19 '08 at 15:51
Try Emacs or VIM. They are both free and very sophisticated. One of them may do the trick. – Dima Sep 19 '08 at 15:52
Just a random comment. 32 bit windows will only assign ~ 2gb of "memory" to a process. – Gregory Nov 20 at 4:25
vote up 1 vote down

I also like notepad++.

link|flag
vote up 1 vote down

Why do you want to load a 4+ GB file into memory? Even if you find a text editor that can do that, does your machine have 4 GB of memory? And unless it has a lot more than 4 GB in physical memory, your machine will slow down a lot and go swap file crazy.

So why do you want a 4+ GB file? If you want to transform it, or do a search and replace, you may be better off writing a small quick program to do it.

link|flag
I need to be able to see the error record that is choking my SSIS import. – Optimal Solutions Sep 20 '08 at 3:02
You could create a quick program to chop off the last 20 MB of the file to a different file and view that. The error would be near the end of the file unless you allowed SSIS to ignore a certain number of errors. – Cervo Sep 26 '08 at 22:55
vote up 2 vote down

When I'm faced with an enormous log file, I don't try to look at the whole thing, I use Free File Splitter

link|flag
vote up -1 vote down

Textpad also works well at opening files that size. I have done it many times when having to deal with extremely large log files in the 3-5gb range. Also, using grep to pull out the worthwhile lines and then look at those works great.

link|flag
I guess my hardware is restricting me then? It just wont open it. Textpad support forum also confirms it. – Optimal Solutions Sep 19 '08 at 20:43
vote up 1 vote down

The question would need more details.
Do you want just to look at a file (eg. a log file) or to edit it?
Do you have more memory than the size of the file you want to load or less?
For example, TheGun, a very small text editor written in assembly language, claims to "not have an effective file size limit and the maximum size that can be loaded into it is determined by available memory and loading speed of the file. [...] It has been speed optimised for both file load and save."

To abstract the memory limit, I suppose one can use mapped memory. But then, if you need to edit the file, some clever method should be used, like storing in memory the local changes, and applying them chunk by chunk when saving. Might be ineffective in some cases (big search/replace for example).

link|flag
I will check that out. Anything written in ASM is worthy of a look! – Optimal Solutions Sep 19 '08 at 20:56
vote up 3 vote down

Just for the record, and to complete this list:

You may want to check "Large Text Viewer", which does... pretty much what it says it does ;) (on Windows)

  • No installation is needed.
  • The executable is only 568KB!
  • search features (regexp supported)
link|flag
1  
Thanks -- this is just what I've been looking for. Fast, easy & just works. – Rob Walker Oct 6 '08 at 13:47
You're welcome ;) – VonC Oct 6 '08 at 13:50
vote up 1 vote down

I have had problems with TextPad on 4G files too. Notepad++ works nicely.

link|flag
vote up 0 vote down

Instead of loading a gigantic log file in an editor, I'm using Unix command line tools like grep, tail, gawk, etc. to filter the interesting parts into a much smaller file and then, I open that.

On Windows, try Cygwin.

link|flag
That looks interesting. The work which required me to peer into huge files is complete, however I shall investigate this for future use! +1 – Optimal Solutions May 14 at 13:21
vote up 4 vote down

I am amazed at the number of people who challenge you on wanting to open a large text file. It's only because they have become accustomed to using tools that won't do the job properly. Think about it. If you said you wanted to open a file of 1 mb only a few people would challenge you on it. But since you want to open a file of 4 Gb, and they can't then they think that you should try to work around to their way of doing it.

Yes, you can do a lot with the unix/linux tools, but for what you are looking to do, an editor or viewer seems perfect. The fact that there are not many of those tools that can do that is no reason that you shouldn't want to do it that way. I am amazed by how much of that I see on help boards on the internet. So many people can't really provide a useful answer to a problem, so they challenge the need to do that in the first place.

Open a file to see what's in it using an editor. Now that's a concept that anyone ought to be able to get behind.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.