Hi, I have one table containing details of records that have been read from a textfile. The fields are similar as below:
1) Record type
2) Record details
3) Filename
4) Download Timestamp
I'm using the same table to store records read from other files but different dates. My problem is that for example if I read 1000 records from a file, all these records will have the same Filename and Download Timestamp which looks redundant. Can anyone help me normalize this table? If I remove the timestamp and file info from the table, how will I differentiate 2 records of the same type but with different timestamps? Thanks!
1) Record type
2) Record details
3) Filename
4) Download Timestamp
I'm using the same table to store records read from other files but different dates. My problem is that for example if I read 1000 records from a file, all these records will have the same Filename and Download Timestamp which looks redundant. Can anyone help me normalize this table? If I remove the timestamp and file info from the table, how will I differentiate 2 records of the same type but with different timestamps? Thanks!