Quote:
Originally Posted by Brian07002
Install Mysql + Phpmyadmin to achieve what you want. Phpmyadmin is a (simple) yet great front-end tool for mysql queries among many other database tasks. Once you get it working, you will need to say a prayer to keep phpmyadmin from 'resetting' your password.
|
I don't think that really answers his question. Though I agree that he should convert his spreadsheet to a SQL database, I don't think phpmyadmin will help him normalize his data.
@i8grand
Normalization just ensures that your data can be stored in a relational model. More or less, it is a systematic way of removing inconsistencies from your database. Say you have a table and it has 3 columns (c1 c2 c3). If a tuple has only values c1 and c2. If c3 is specified as not null or is a primary key then you have a problem.
Typically this is something that can easily occur in a less strict data model such as xml. In xml a relation might have multiple instances of a column value or no instance at all.
Spreadsheets, however, are already very close to a relational model since they are typically tables. Unless you have lots of tubles that are missing column values or somehow have more than one (in a single row) then you shouldn't really need to worry about normalization too much, but I cannot say for sure without seeing an example of your data.
Last edited by NullPointer; 04-10-2009 at 10:19 PM..
|