A solution of one of our business problems would be to store about 500 milion records into a database. Each record would have about 40 to 50 columns.
I have a text file containing all of this data and it is about 150 GB. (a 3rd of my harddisk)
If I were to load (somehow) all of this data into a db (ORACLE ?) how well would it perform ?
A colleague of mine insists that it would be absolutely fine. And I could even index all of the 40 to 50 columns and then it is a matter of writing some sql to get data out.
is he right ? or is 500 milion records too much for a db ?
p.s. Just adding more information following some very good answers: The 40 to 50 columns will hold small strings and/or numbers. For small strings I intend something smaller than 64 characters.