I have a file that has each field separated by | and each line is new record
There are six fields
property|type|details|date1|date2|frequency
I would like to do the following :
Create a table name for each name in field 1 , there are many instances of the same name , so probably need to look for dupes first
This new table should have the fields type details date1 date2 frequency
I would secondly like to enter the records from the file into these newly created tables.
At the end of the day this will be a calendar database with tables for each property (approx 30 of them)
it seems like it should be a pretty simple task using perl, assuming I knew where to begin...
any pointers would be appreciated... to google I go
