I have inherited a big, messy table with duplicated data and empty fields consisting of Names (business, client, supplier, etc.), Addresses ( physical, mailing, shipping, billing), Orders ( Date, item, quantity, price, shippedby, shipdate, shipcost), etc..
I wish to "normalize" this without loosing data.
MainTable.ID -> NamesTable (NameID, NameType, LName, FName, etc....)
-> AddressTable (AddressID, Type, Line1, Line2, Suite/Box, ....)
-> OdrersTable (OrderID, Item, Qty, Price, ShipFactor, ....)
-> more
Please direct me to a step - by step work flow of how to dissect a messy table into normalized tables without loosing data of its correct relationships.
Thank you!
I wish to "normalize" this without loosing data.
MainTable.ID -> NamesTable (NameID, NameType, LName, FName, etc....)
-> AddressTable (AddressID, Type, Line1, Line2, Suite/Box, ....)
-> OdrersTable (OrderID, Item, Qty, Price, ShipFactor, ....)
-> more
Please direct me to a step - by step work flow of how to dissect a messy table into normalized tables without loosing data of its correct relationships.
Thank you!
Comment