I have a csv file that contains time (hh:mm:ss) and date (mm/dd/yyyy) fields, and sixteen more fields.
Generally the time field display time every 30'', but sometime the separation might be more (minutes or even hours).
For instance:
1/27/2011 12:10:00
1/27/2011 12:10:30
1/27/2011 12:11:00
1/27/2011 12:15:00
I need to add new lines (as many as the gap between them) every time the gap between a line and the next is more the 30'', and fill them out with the values from the first line in the gap.
I would like to do it without working in a database environment. Is it possible? If so, can you give me some good tips?