Hi,
I need some help designing a database containing information from 70GB of proxy logs.
To keep it basic, there are mainly 4 fields I'm interested in:
Userid IP Address Time URL
I have a perl script to insert the data parsed from the logs. I'm wondering though, can I just have one table with the 4 column headings above or do I need a cleverer design than that? As I fill this table up I'm wary that it's going to take longer to run a query, such as 'select URL where Userid="ed"'. What would be the optimal design for something like this? Also which is database product would be best? MySQL or PostgreSQL?
Thanks for any help,
Ed.