- Local time
- Yesterday, 20:24
- Joined
- Feb 28, 2001
- Messages
- 28,846
Since you didn't know about relationship diagrams, I'm going to suggest that you do some serious reading on database normalization. The reason you want to do that is two-fold. First, normalizing your DB saves space (usually) by pointing to something that is re-used a lot. Second, if you have a good relationship diagram that is closer to normalized, the query and form wizards can read the relationships and "power assist" you in building something that will work more efficiently.
"Database Normalization" is what you would seek on the general Internet. On this forum, which is oriented to databases, you only need to ask for "Normalization."
Here is one problem. When you look at your data, it is possible that your master data set isn't normalized, but you claim to have not power over the data set. How you deal with that will be a serious issue.
Here is another problem. You mentioned that you have a FoxPro back-end DB but you also had some tables in a native-Access back-end. You can't draw relationships between the two because a limitation of Access is that you can only relate tables that are in the same file. You can still express a relationship implicitly in your queries, but that "power assist" won't be there for things that are in different files.
"Database Normalization" is what you would seek on the general Internet. On this forum, which is oriented to databases, you only need to ask for "Normalization."
Here is one problem. When you look at your data, it is possible that your master data set isn't normalized, but you claim to have not power over the data set. How you deal with that will be a serious issue.
Here is another problem. You mentioned that you have a FoxPro back-end DB but you also had some tables in a native-Access back-end. You can't draw relationships between the two because a limitation of Access is that you can only relate tables that are in the same file. You can still express a relationship implicitly in your queries, but that "power assist" won't be there for things that are in different files.