atheistrical
10-25-2009, 11:48 AM
I have been in the process of learning MySQL and have learned a lot from CodingForums.com, special thanks to all the expert coders around like Old Pedant.
I have prepared the skeleton of a normalized database from what I discovered as a very bad single tabled database design. I have come across this issue now, where I will also mention the measures I have taken to resolve it.
Issue : The database to be normalized is already populated with thousands of rows of data. I wish I could export the data column-wise.
Resolution Attempted : I made copies of the database, deleted the columns which weren't required to be exported and then exported the single-columned table. I did this for every column.
Problems : The newly created database (i.e. the normalized scheme) has linking columns (i.e. foreign keys) which were absent in the previous single-tabled database.
I seek your advice on this please!
I have prepared the skeleton of a normalized database from what I discovered as a very bad single tabled database design. I have come across this issue now, where I will also mention the measures I have taken to resolve it.
Issue : The database to be normalized is already populated with thousands of rows of data. I wish I could export the data column-wise.
Resolution Attempted : I made copies of the database, deleted the columns which weren't required to be exported and then exported the single-columned table. I did this for every column.
Problems : The newly created database (i.e. the normalized scheme) has linking columns (i.e. foreign keys) which were absent in the previous single-tabled database.
I seek your advice on this please!