If this is your first visit, be sure to check out the FAQ by clicking the link above.
You may have to register before you can post: click the register link above to proceed.
To start viewing messages, select the forum that you want to visit from the selection below.
I am doing a project of converting a spreadsheet to database. Currently the spreadsheet contains 12 pages of general information (attribute) as follows:
I am not too sure how to approach converting this into a database. My first attempt was putting everything into one table but this solution hasn't worked.
If you want to redesign your database to implement foreign keys, constraints, normalization, etc, do it after you have the data loaded into your tables.
__________________
If it's not practically useful, then it's practically useless.
If you redesign your database first, then:
1) You are going to be doing it without the benefit of looking directly at the actual data.
2) You are going to need to create additional staging tables or transformation processes to convert your old schema to your new one.
So unless uploading this data needs to be a repeatable process, if you have a green field development project why would you create additional work for yourself?
__________________
If it's not practically useful, then it's practically useless.
If you redesign your database first, then:
1) You are going to be doing it without the benefit of looking directly at the actual data.
2) You are going to need to create additional staging tables or transformation processes to convert your old schema to your new one.
So unless uploading this data needs to be a repeatable process, if you have a green field development project why would you create additional work for yourself?
I understand your point now...thanks for the help. I will directly upload the data to tables and take it from there. I will keep this thread updated if I come across any problems.