I have a monthly spreadsheet summary that I want to import to my database. This spreadsheet is the result of compiling all the key relationships together.
Does anyone know the best way to chop up the spreadsheet based on fields and have the target columns and records disbursed to the appropriate parent tables? Like re-engineering the database on which this spreadsheet was compiled.
Also, how can I generate primary keys in the tables when there are new keys that didn't exist in the prior month.
my schema has these kinds of relationships throughout:
tbl_master.uniqueID(PK1)
tbl_history.uniqueID & month (FK1)
Does anyone know the best way to chop up the spreadsheet based on fields and have the target columns and records disbursed to the appropriate parent tables? Like re-engineering the database on which this spreadsheet was compiled.
Also, how can I generate primary keys in the tables when there are new keys that didn't exist in the prior month.
my schema has these kinds of relationships throughout:
tbl_master.uniqueID(PK1)
tbl_history.uniqueID & month (FK1)