How to view a very huge csv data file ?
by curiousbeast - Friday August 16, 2024 at 06:24 PM
#21
Here are some command you can use on Linux to search in your CSV:
head -10 /path/to/file.csv
 
Allows your to check the first 10 lines of your CSV, you can check to more or less lines depending on your needs
grep -iFE "keyword" /path/to/file.csv
 
Search for specific keyword in a file, it will show you the lines containing your keyword and highlight it
grep -iFER "keyword" /path/to/directory/
 
Same as previously but to do it in a directory containing multiple files

These commands will help you to search for specific things quickly (may take few minutes if you have 10s of millions of entries), and wont use as much resource as if you open the full file.
Reply
#22
You can use moderncsv or Emeditor . Both performs well in handling huge csv files
Reply
#23
you can import a csv file with "\copy" easily into a postgre db
Reply
#24
is emeditor available for linux?
Reply
#25
I personally use emeditor, its good amd it works nicely. Though it will still take its time in opening a large file like the one you mentioned.
Ban reason: Leeching. (Permanent)
Reply
#26
ultralEdit is a good software, u can try
Ban reason: Leeching | http://raiddfzn73ir6iyxlf7nwytnujiflddog...an-Appeals if you feel this is incorrect. (Permanent)
Reply
#27
Use LargeFileViewer, its a good option
Ban reason: Leeching | http://raiddfzn73ir6iyxlf7nwytnujiflddog...an-Appeals if you feel this is incorrect. (Permanent)
Reply
#28
split -l 1000 large.csv small_csv_
Reply
#29
Less UX but python associated with a Jupyter Notebook is great (Anaconda environment). Use Pandas Library
Reply
#30
You need to use Linux command line tools, easiest way. Windows doesn't offer much in the way of that.
Ban reason: Leeching | http://raiddfzn73ir6iyxlf7nwytnujiflddog...an-Appeals if you feel this is incorrect. (Permanent)
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  REQUEST looking for dukcapil 300m data MietaQ 2 4,483 02-10-2026, 02:36 PM
Last Post: r57
  AUS DATA mikework 3 2,415 02-10-2026, 02:33 PM
Last Post: r57
  İ need instagram data hellohihi 8 2,124 02-10-2026, 02:31 PM
Last Post: r57
  REQUEST MAID-based mobile location & mobility data for Azerbaijan, Turkey and Russia Thienx 0 1,709 02-10-2026, 11:05 AM
Last Post: Thienx
  any indonesian data? benni 0 1,787 02-09-2026, 11:13 AM
Last Post: benni



 Users browsing this thread: