How to sort the database alphabetically?
by - Thursday, January 1, 1970 at 12:00 AM
What program can sort a very large database (20+ GB) alphabetically? txt format
Reply
convert the database to a .db file or something that works with sql, and you can use sql commands to sort it. Google what I said for the details.
Reply
If the column you want to sort on is first:

cat files.txt | sort
Reply
what is the database format?

- if it is a basic text file, then it' DrD00m way, I think.
- if it is a sql relational database, then order by the column you target, and make sure the database has the proper collation.
Reply


 Users viewing this thread: How to sort the database alphabetically?: No users currently viewing.